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

Revert "Fix CI warnings."

This reverts commit 669b9cee7a.
This commit is contained in:
Dirk O. Kaar
2019-04-21 02:15:55 +02:00
parent e04ac236c6
commit 64a56c9896
2 changed files with 3 additions and 3 deletions

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 *) {
void ICACHE_RAM_ATTR interrupt_handler(void *arg) {
uint32_t status = GPIE;
GPIEC = status;//clear them interrupts
uint32_t levels = GPI;