Merge branch 'master' into mqtt

This commit is contained in:
Jonathan Naylor
2024-09-30 18:53:33 +01:00
12 changed files with 1249 additions and 313 deletions

View File

@@ -168,7 +168,7 @@ bool CDStarNetwork::writePoll(const char* text)
buffer[4] = 0x0AU; // Poll with text
unsigned int length = ::strlen(text);
unsigned int length = (unsigned int)::strlen(text);
// Include the nul at the end also
::memcpy(buffer + 5U, text, length + 1U);