core: add callsign to default settings

This commit is contained in:
Morgan Diepart 2026-03-01 14:14:04 +01:00 committed by Silvano Seva
parent 1e257e5c90
commit 1d5d872044
2 changed files with 1 additions and 3 deletions

View file

@ -67,7 +67,7 @@ static const settings_t default_settings =
0, // Vox level
0, // UTC Timezone
false, // GPS enabled
"", // Empty callsign
"N0CALL", // Default callsign
TIMER_30S, // 30 seconds
0, // M17 CAN
0, // Voice prompts off

View file

@ -35,8 +35,6 @@ void state_init()
*/
if (nvm_readSettings(&state.settings) < 0) {
state.settings = default_settings;
strncpy(state.settings.callsign, "OPNRTX", 10);
strncpy(state.settings.M17_meta_text, "OPENRTX", 53);
}
/*