ESP8266的GPIO16属于RTC模块,不能触发中断,与其他GPIO的配置方式不同,配置函数如下:
void gpio16_output_conf(void); //初始化为输出模式
void gpio16_output_set(uint8 value); //输出指定电平
void gpio16InputConf(void); //配置为输入模式
uint8 gpio16InputGet(void); //获取管脚输入
函数声明在gpio16.h
,函数定义见gpio16.c
。
【附】ESP8266管脚图