mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix(bt/controller): Change level of BLE interrupt to avoid allocation failure
This commit is contained in:
parent
ce8dd3997d
commit
84657b9d74
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user