1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-12 20:49:16 +03:00

Fix CI warnings.

This commit is contained in:
Dirk O. Kaar
2019-04-21 02:06:12 +02:00
parent efafcbded1
commit e04ac236c6
2 changed files with 3 additions and 3 deletions

View File

@@ -126,10 +126,10 @@ typedef struct {
void* functionInfo; void* functionInfo;
} ArgStructure; } ArgStructure;
static interrupt_handler_t interrupt_handlers[16] = {0,}; static interrupt_handler_t interrupt_handlers[16] = {0};
static uint32_t interrupt_reg = 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; uint32_t status = GPIE;
GPIEC = status;//clear them interrupts GPIEC = status;//clear them interrupts
uint32_t levels = GPI; uint32_t levels = GPI;