]> granicus.if.org Git - esp-idf/commitdiff
Fix esp_sleep_wakeup_cause_t docs. Merges https://github.com/espressif/esp-idf/pull...
authorDaniël van Eeden <git@myname.nl>
Sun, 18 Feb 2018 12:12:57 +0000 (13:12 +0100)
committerkrzychb <krzychb@gazeta.pl>
Tue, 20 Feb 2018 19:22:14 +0000 (20:22 +0100)
value and description didn't match

components/esp32/include/esp_sleep.h

index 1e3f4efdcf56a5d38870894720f02bf6fc66ffde..d2c4b122ffd98334d2e6857c1566b14ce4aa348b 100644 (file)
@@ -54,12 +54,12 @@ typedef enum {
  * @brief Sleep wakeup cause
  */
 typedef enum {
-    ESP_SLEEP_WAKEUP_UNDEFINED,    //! In case of deep sleep, reset was not caused by exit from deep sleep
-    ESP_SLEEP_WAKEUP_EXT0,         //! Wakeup caused by external signal using RTC_IO
-    ESP_SLEEP_WAKEUP_EXT1,         //! Wakeup caused by external signal using RTC_CNTL
-    ESP_SLEEP_WAKEUP_TIMER,        //! Wakeup caused by timer
-    ESP_SLEEP_WAKEUP_TOUCHPAD,     //! Wakeup caused by touchpad
-    ESP_SLEEP_WAKEUP_ULP,          //! Wakeup caused by ULP program
+    ESP_SLEEP_WAKEUP_UNDEFINED,    //!< In case of deep sleep, reset was not caused by exit from deep sleep
+    ESP_SLEEP_WAKEUP_EXT0,         //!< Wakeup caused by external signal using RTC_IO
+    ESP_SLEEP_WAKEUP_EXT1,         //!< Wakeup caused by external signal using RTC_CNTL
+    ESP_SLEEP_WAKEUP_TIMER,        //!< Wakeup caused by timer
+    ESP_SLEEP_WAKEUP_TOUCHPAD,     //!< Wakeup caused by touchpad
+    ESP_SLEEP_WAKEUP_ULP,          //!< Wakeup caused by ULP program
 } esp_sleep_wakeup_cause_t;