fixed some warnings

This commit is contained in:
2023-09-27 09:59:35 +02:00
parent f320fb1ca6
commit 3bb9bf694e
3 changed files with 7 additions and 7 deletions

View File

@@ -33,7 +33,7 @@ void Debug_Process()
CMD_OVERFLOW
} InputProcessed_t;
static int inputCnt = 0;
static unsigned int inputCnt = 0;
static char inputBuffer[32];
InputProcessed_t InputProcessed = IDLE;
@@ -334,7 +334,7 @@ void Debug_printHelp()
{
char buff[64];
for (int i = sizeof(helpCmd) / 63; i < sizeof(helpCmd) / 63; i++)
for (unsigned int i = sizeof(helpCmd) / 63; i < sizeof(helpCmd) / 63; i++)
{
memcpy_P(buff, (helpCmd + (i * 63)), 63);
buff[63] = 0;