mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
24 lines
397 B
C
24 lines
397 B
C
/*
|
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void example_wait_gpio_inactive(void);
|
|
|
|
esp_err_t example_register_gpio_wakeup(void);
|
|
|
|
esp_err_t example_register_timer_wakeup(void);
|
|
|
|
esp_err_t example_register_uart_wakeup(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|