From: Christian Hoene Date: Sat, 9 Feb 2019 11:21:41 +0000 (+0100) Subject: esp32: esp_intr_alloc: Fixed issue with level 5 not being called X-Git-Tag: v4.0-dev~20^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=025deab4d2e090911d47beb1a910fefe7e2e91bb;p=esp-idf 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 --- 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