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

Fix CI warnings.

This commit is contained in:
Dirk O. Kaar
2019-04-21 02:06:12 +02:00
parent 5c8c68f98b
commit 669b9cee7a
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 *arg) {
void ICACHE_RAM_ATTR interrupt_handler(void *) {
uint32_t status = GPIE;
GPIEC = status;//clear them interrupts
uint32_t levels = GPI;