add language, syslog and simulator identifier to version string

This commit is contained in:
Frank 2024-01-14 13:47:22 +01:00
parent f5158d4725
commit 7c1ddf875f
2 changed files with 16 additions and 1 deletions

View file

@ -486,6 +486,21 @@ void app::resetSystem(void) {
#ifdef AP_ONLY
"A"
#endif
#ifdef ENABLE_SYSLOG
"Y"
#endif
#ifdef ENABLE_SIMULATOR
"S"
#endif
"-"
#ifdef LANG_DE
"de"
#else
"en"
#endif
);
#ifdef AP_ONLY