We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fc98a2 commit 2c0b752Copy full SHA for 2c0b752
src/Wippersnapper.cpp
@@ -2737,12 +2737,10 @@ void get_and_print_reset_reason_for_cpu(int cpuCore) {
2737
// end of ARDUINO_ARCH_ESP32
2738
#elif defined(ARDUINO_ARCH_RP2040)
2739
2740
-void print_reset_reason()
2741
-{
+void print_reset_reason() {
2742
RP2040::resetReason_t reason = rp2040.getResetReason();
2743
WS_DEBUG_PRINT("RP2040 RESET REASON: ");
2744
- switch (reason)
2745
- {
+ switch (reason) {
2746
case RP2040::resetReason_t::UNKNOWN_RESET:
2747
WS_DEBUG_PRINTLN("Unknown Reset");
2748
case RP2040::resetReason_t::PWRON_RESET:
0 commit comments