1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-09 22:24:14 +03:00

Fix CI warnings.

(cherry picked from commit 669b9cee7a)
This commit is contained in:
Dirk O. Kaar
2019-04-21 02:18:34 +02:00
parent 64a56c9896
commit 38ef0f1557

View File

@@ -126,10 +126,10 @@ typedef struct {
void* functionInfo;
} ArgStructure;
static interrupt_handler_t interrupt_handlers[16] = {0,};
static interrupt_handler_t interrupt_handlers[16] = {0};
static uint32_t interrupt_reg = 0;
void ICACHE_RAM_ATTR interrupt_handler(void *arg) {
void ICACHE_RAM_ATTR interrupt_handler(void *) {
uint32_t status = GPIE;
GPIEC = status;//clear them interrupts
uint32_t levels = GPI;