Merge branch 'bugfix/fix_ble_intr_alloc_failure' into 'release/v5.0'

fix(bt/controller): Change level of BLE interrupt to avoid allocation failure

See merge request espressif/esp-idf!32199
This commit is contained in:
Island
2024-07-25 12:10:07 +08:00

View File

@ -495,7 +495,7 @@ static int interrupt_alloc_wrapper(int cpu_id, int source, intr_handler_t handle
{
btdm_isr_alloc_t p;
p.source = source;
p.flags = ESP_INTR_FLAG_LEVEL1 | ESP_INTR_FLAG_IRAM;
p.flags = ESP_INTR_FLAG_LOWMED | ESP_INTR_FLAG_IRAM;
p.fn = handler;
p.arg = arg;
p.handle = (intr_handle_t *)ret_handle;