esp32_irq.c: Don't reserve BT and Wifi CPU interrupts for APP CPU as

they are attached to the PRO CPU.

Signed-off-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com>
This commit is contained in:
Abdelatif Guettouche
2022-02-17 21:37:17 +01:00
committed by Xiang Xiao
parent 17e43b0b4a
commit ee88235d81
+1 -3
View File
@@ -173,9 +173,7 @@ static uint32_t g_cpu0_freeints = ESP32_CPUINT_PERIPHSET &
(~ESP32_WIRELESS_RESERVE_INT &
~ESP32_BLE_RESERVE_INT);
#ifdef CONFIG_SMP
static uint32_t g_cpu1_freeints = ESP32_CPUINT_PERIPHSET &
(~ESP32_WIRELESS_RESERVE_INT &
~ESP32_BLE_RESERVE_INT);
static uint32_t g_cpu1_freeints = ESP32_CPUINT_PERIPHSET;
#endif
/* Bitsets for each interrupt priority 1-5 */