mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-07-08 10:24:50 +08:00
fix: Fix all files when change to use standard typedef
This commit is contained in:
components
esp8266
driver
include
c_types.h
esp8266
esp_misc.hesp_softap.hesp_ssc.hesp_sta.hesp_system.hesp_timer.hesp_wifi.hesp_wps.hespnow.hpwm.hsmartconfig.hspi_flash.hupgrade.hsource
freertos/port/esp8266
lwip/apps/dhcpserver
spiffs
ssl
axtls
include/ssl
source
mbedtls/port/openssl/source/platform
tcpip_adapter
examples
get-started/project_template/main
protocols
mqtt/main
openssl_client/main
openssl_demo/main
openssl_server/main
wifi
@ -25,6 +25,9 @@
|
||||
#ifndef __SMARTCONFIG_H__
|
||||
#define __SMARTCONFIG_H__
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
@ -135,7 +138,7 @@ bool smartconfig_stop(void);
|
||||
* @return true : succeed
|
||||
* @return false : fail
|
||||
*/
|
||||
bool esptouch_set_timeout(uint8 time_s);
|
||||
bool esptouch_set_timeout(uint8_t time_s);
|
||||
|
||||
/**
|
||||
* @brief Set protocol type of SmartConfig.
|
||||
|
Reference in New Issue
Block a user