Increase DTMF string buffers size

This commit is contained in:
Krzysiek Egzmont 2023-10-24 03:43:09 +02:00
parent 50cc34ad9b
commit 856dbe083d
2 changed files with 3 additions and 3 deletions

View File

@ -203,7 +203,7 @@ void DTMF_Append(const char code)
void DTMF_HandleRequest(void)
{ // proccess the RX'ed DTMF characters
char String[20];
char String[21];
unsigned int Offset;
if (!gDTMF_RX_pending)
@ -383,7 +383,7 @@ void DTMF_HandleRequest(void)
void DTMF_Reply(void)
{
uint16_t Delay;
char String[20];
char String[23];
const char *pString = NULL;
switch (gDTMF_ReplyState)

View File

@ -271,7 +271,7 @@ void UI_DisplayMain(void)
{
const unsigned int line0 = 0; // text screen line
const unsigned int line1 = 4;
char String[16];
char String[22];
unsigned int vfo_num;
center_line = CENTER_LINE_NONE;