mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-07-29 18:27:15 +02:00
Deep-sleep example-sketches reported wrong wakeup-reason (#1911)
Incorrect values used, use the proper defines from header-files instead.
This commit is contained in:
@ -26,12 +26,12 @@ void print_wakeup_reason(){
|
||||
|
||||
switch(wakeup_reason)
|
||||
{
|
||||
case 1 : Serial.println("Wakeup caused by external signal using RTC_IO"); break;
|
||||
case 2 : Serial.println("Wakeup caused by external signal using RTC_CNTL"); break;
|
||||
case 3 : Serial.println("Wakeup caused by timer"); break;
|
||||
case 4 : Serial.println("Wakeup caused by touchpad"); break;
|
||||
case 5 : Serial.println("Wakeup caused by ULP program"); break;
|
||||
default : Serial.println("Wakeup was not caused by deep sleep"); break;
|
||||
case ESP_SLEEP_WAKEUP_EXT0 : Serial.println("Wakeup caused by external signal using RTC_IO"); break;
|
||||
case ESP_SLEEP_WAKEUP_EXT1 : Serial.println("Wakeup caused by external signal using RTC_CNTL"); break;
|
||||
case ESP_SLEEP_WAKEUP_TIMER : Serial.println("Wakeup caused by timer"); break;
|
||||
case ESP_SLEEP_WAKEUP_TOUCHPAD : Serial.println("Wakeup caused by touchpad"); break;
|
||||
case ESP_SLEEP_WAKEUP_ULP : Serial.println("Wakeup caused by ULP program"); break;
|
||||
default : Serial.printf("Wakeup was not caused by deep sleep: %d\n",wakeup_reason); break;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user