fix annoying sequans warning
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
This commit is contained in:
@@ -510,7 +510,7 @@ class TinyGsmSequansMonarch
|
|||||||
waitResponse(10000L, GF(GSM_NL "> "));
|
waitResponse(10000L, GF(GSM_NL "> "));
|
||||||
// Translate bytes into char to be able to send them as an hex string
|
// Translate bytes into char to be able to send them as an hex string
|
||||||
char char_command[2];
|
char char_command[2];
|
||||||
for (int i=0; i<len; i++) {
|
for (size_t i=0; i<len; i++) {
|
||||||
memset(&char_command, 0, sizeof(char_command));
|
memset(&char_command, 0, sizeof(char_command));
|
||||||
sprintf(&char_command[0], "%02X", reinterpret_cast<const uint8_t*>(buff)[i]);
|
sprintf(&char_command[0], "%02X", reinterpret_cast<const uint8_t*>(buff)[i]);
|
||||||
stream.write(char_command, sizeof(char_command));
|
stream.write(char_command, sizeof(char_command));
|
||||||
|
Reference in New Issue
Block a user