You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
338 B
18 lines
338 B
10 years ago
|
#include "c_types.h"
|
||
|
#include "user_interface.h"
|
||
|
#include "espconn.h"
|
||
|
#include "mem.h"
|
||
|
#include "osapi.h"
|
||
|
#include "gpio.h"
|
||
|
|
||
|
void ICACHE_FLASH_ATTR ioLed(int ena) {
|
||
|
if (ena) {
|
||
|
gpio_output_set(BIT2, 0, BIT2, 0);
|
||
|
} else {
|
||
|
gpio_output_set(0, BIT2, BIT2, 0);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void ioInit() {
|
||
|
PIN_FUNC_SELECT(PERIPHS_IO_MUX_GPIO2_U, FUNC_GPIO2);
|
||
|
}
|