From 025deab4d2e090911d47beb1a910fefe7e2e91bb Mon Sep 17 00:00:00 2001 From: Christian Hoene Date: Sat, 9 Feb 2019 12:21:41 +0100 Subject: [PATCH] esp32: esp_intr_alloc: Fixed issue with level 5 not being called Closes https://github.com/espressif/esp-idf/issues/3039 Merges https://github.com/espressif/esp-idf/issues/3040 --- components/esp32/intr_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp32/intr_alloc.c b/components/esp32/intr_alloc.c index c609733221..3260ca809c 100644 --- a/components/esp32/intr_alloc.c +++ b/components/esp32/intr_alloc.c @@ -118,7 +118,7 @@ const static int_desc_t int_desc[32]={ { 3, INTTP_LEVEL, {INTDESC_NORMAL, INTDESC_NORMAL} }, //23 { 4, INTTP_LEVEL, {INTDESC_RESVD, INTDESC_NORMAL} }, //24 { 4, INTTP_LEVEL, {INTDESC_RESVD, INTDESC_RESVD } }, //25 - { 5, INTTP_LEVEL, {INTDESC_RESVD, INTDESC_RESVD } }, //26 + { 5, INTTP_LEVEL, {INTDESC_NORMAL, INTDESC_RESVD } }, //26 { 3, INTTP_LEVEL, {INTDESC_RESVD, INTDESC_RESVD } }, //27 { 4, INTTP_EDGE, {INTDESC_NORMAL, INTDESC_NORMAL} }, //28 { 3, INTTP_NA, {INTDESC_SPECIAL,INTDESC_SPECIAL}}, //29