Skip to content

Commit

Permalink
[Core] Fix some string/message inconsistencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tonhuisman committed Aug 13, 2023
1 parent 1c71b74 commit 4a9068e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/src/Helpers/StringGenerator_System.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ const __FlashStringHelper * getResetReasonString_f(uint8_t icore, bool& isDEEPSL
case DEEPSLEEP_RESET : isDEEPSLEEP_RESET = true; break;
case TG0WDT_SYS_RESET : return F("Timer Group0 Watch dog reset digital core");
case TG1WDT_SYS_RESET : return F("Timer Group1 Watch dog reset digital core");
case RTCWDT_SYS_RESET : return F("RTC Watch dog Reset digital core");
case RTCWDT_SYS_RESET : return F("RTC Watch dog reset digital core");
case INTRUSION_RESET : return F("Instrusion tested to reset CPU");
case TG0WDT_CPU_RESET : return F("Time Group0 reset CPU");
case RTC_SW_CPU_RESET : return F("Software reset CPU");
case RTCWDT_CPU_RESET : return F("RTC Watch dog Reset CPU");
case RTCWDT_CPU_RESET : return F("RTC Watch dog reset CPU");
case RTCWDT_BROWN_OUT_RESET : return F("Reset when the vdd voltage is not stable");
case RTCWDT_RTC_RESET : return F("RTC Watch dog reset digital core and rtc module");
case TG1WDT_CPU_RESET : return F("Time Group1 reset CPU");
Expand All @@ -110,11 +110,11 @@ const __FlashStringHelper * getResetReasonString_f(uint8_t icore, bool& isDEEPSL
case DEEPSLEEP_RESET : isDEEPSLEEP_RESET = true; break;
case TG0WDT_SYS_RESET : return F("Timer Group0 Watch dog reset digital core");
case TG1WDT_SYS_RESET : return F("Timer Group1 Watch dog reset digital core");
case RTCWDT_SYS_RESET : return F("RTC Watch dog Reset digital core");
case RTCWDT_SYS_RESET : return F("RTC Watch dog reset digital core");
case INTRUSION_RESET : return F("Instrusion tested to reset CPU");
case TG0WDT_CPU_RESET : return F("Time Group0 reset CPU");
case RTC_SW_CPU_RESET : return F("Software reset CPU");
case RTCWDT_CPU_RESET : return F("RTC Watch dog Reset CPU");
case RTCWDT_CPU_RESET : return F("RTC Watch dog reset CPU");
case RTCWDT_BROWN_OUT_RESET : return F("Reset when the vdd voltage is not stable");
case RTCWDT_RTC_RESET : return F("RTC Watch dog reset digital core and rtc module");
case TG1WDT_CPU_RESET : return F("Time Group1 reset CPU");
Expand All @@ -136,11 +136,11 @@ const __FlashStringHelper * getResetReasonString_f(uint8_t icore, bool& isDEEPSL
case DEEPSLEEP_RESET : isDEEPSLEEP_RESET = true; break;
case TG0WDT_SYS_RESET : return F("Timer Group0 Watch dog reset digital core");
case TG1WDT_SYS_RESET : return F("Timer Group1 Watch dog reset digital core");
case RTCWDT_SYS_RESET : return F("RTC Watch dog Reset digital core");
case RTCWDT_SYS_RESET : return F("RTC Watch dog reset digital core");
case INTRUSION_RESET : return F("Instrusion tested to reset CPU");
case TG0WDT_CPU_RESET : return F("Time Group0 reset CPU");
case RTC_SW_CPU_RESET : return F("Software reset CPU");
case RTCWDT_CPU_RESET : return F("RTC Watch dog Reset CPU");
case RTCWDT_CPU_RESET : return F("RTC Watch dog reset CPU");
case RTCWDT_BROWN_OUT_RESET : return F("Reset when the vdd voltage is not stable");
case RTCWDT_RTC_RESET : return F("RTC Watch dog reset digital core and rtc module");
case TG1WDT_CPU_RESET : return F("Time Group1 reset CPU");
Expand All @@ -164,12 +164,12 @@ const __FlashStringHelper * getResetReasonString_f(uint8_t icore, bool& isDEEPSL
case SDIO_RESET : return F("Reset by SLC module, reset digital core");
case TG0WDT_SYS_RESET : return F("Timer Group0 Watch dog reset digital core");
case TG1WDT_SYS_RESET : return F("Timer Group1 Watch dog reset digital core");
case RTCWDT_SYS_RESET : return F("RTC Watch dog Reset digital core");
case RTCWDT_SYS_RESET : return F("RTC Watch dog reset digital core");
case INTRUSION_RESET : return F("Instrusion tested to reset CPU");
case TGWDT_CPU_RESET : return F("Time Group reset CPU");
case SW_CPU_RESET : return F("Software reset CPU");
case RTCWDT_CPU_RESET : return F("RTC Watch dog Reset CPU");
case EXT_CPU_RESET : return F("for APP CPU, reseted by PRO CPU");
case RTCWDT_CPU_RESET : return F("RTC Watch dog reset CPU");
case EXT_CPU_RESET : return F("for APP CPU, reset by PRO CPU");
case RTCWDT_BROWN_OUT_RESET : return F("Reset when the vdd voltage is not stable");
case RTCWDT_RTC_RESET : return F("RTC Watch dog reset digital core and rtc module");
default: break;
Expand Down

0 comments on commit 4a9068e

Please sign in to comment.