mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-04 03:37:33 -05:00
Use correct version of strcat for flash strings
This commit is contained in:
parent
b655704264
commit
9a68846b58
@ -83,7 +83,7 @@ void printCarrierFreq(unsigned long freq){
|
|||||||
strncat(c, b, 2);
|
strncat(c, b, 2);
|
||||||
strcat_P(c,(const char*)F("."));
|
strcat_P(c,(const char*)F("."));
|
||||||
strncat(c, &b[2], 3);
|
strncat(c, &b[2], 3);
|
||||||
strcat(c,(const char*)F("."));
|
strcat_P(c,(const char*)F("."));
|
||||||
strncat(c, &b[5], 1);
|
strncat(c, &b[5], 1);
|
||||||
displayText(c, LAYOUT_SETTING_VALUE_X, LAYOUT_SETTING_VALUE_Y, LAYOUT_SETTING_VALUE_WIDTH, LAYOUT_SETTING_VALUE_HEIGHT, COLOR_TEXT, COLOR_TITLE_BACKGROUND, COLOR_BACKGROUND);
|
displayText(c, LAYOUT_SETTING_VALUE_X, LAYOUT_SETTING_VALUE_Y, LAYOUT_SETTING_VALUE_WIDTH, LAYOUT_SETTING_VALUE_HEIGHT, COLOR_TEXT, COLOR_TITLE_BACKGROUND, COLOR_BACKGROUND);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user