diff --git a/radio/src/opentx.cpp b/radio/src/opentx.cpp index 88a79d328..0aeccb617 100644 --- a/radio/src/opentx.cpp +++ b/radio/src/opentx.cpp @@ -4884,9 +4884,9 @@ void stack_paint() p = (unsigned char *) STACKPTR ; q = &__bss_end ; p -= 2 ; - while ( p > q ) - *p = 0x55 ; - p--; + while ( p > q ) { + *p-- = 0x55 ; + } } uint16_t stack_free() diff --git a/radio/src/stamp.cpp b/radio/src/stamp.cpp index 70147cb0c..cce6febc4 100644 --- a/radio/src/stamp.cpp +++ b/radio/src/stamp.cpp @@ -41,7 +41,7 @@ #define DEFNUMSTR(s) STR2(s) #if defined(PCBSTD) -const pm_char vers_stamp[] PROGMEM = "VERS\037\045" VERS_STR "\036DATE\037\045" DATE_STR"\036TIME\037\045" TIME_STR "\036EEPR\037\045" DEFNUMSTR(EEPROM_VER) "-" DEFNUMSTR(EEPROM_VARIANT); +const pm_char vers_stamp[] PROGMEM = "VERS\037\033: " VERS_STR "\036DATE\037\033: " DATE_STR"\036TIME\037\033: " TIME_STR "\036EEPR\037\033: " DEFNUMSTR(EEPROM_VER) "-" DEFNUMSTR(EEPROM_VARIANT); #else const pm_char vers_stamp[] PROGMEM = "VERS\037\033: " VERS_STR "\036DATE\037\033: " DATE_STR"\036TIME\037\033: " TIME_STR "\036EEPR\037\033: " DEFNUMSTR(EEPROM_VER); #endif