Merge branch 'master' into mqtt

This commit is contained in:
Jonathan Naylor
2024-10-04 17:37:55 +01:00
11 changed files with 472 additions and 53 deletions

View File

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