Skip to content

Commit

Permalink
fix(bt/controller): Change level of BLE interrupt to avoid allocation…
Browse files Browse the repository at this point in the history
… failure
  • Loading branch information
esp-cjh committed Jul 18, 2024
1 parent ce8dd39 commit 84657b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/bt/controller/esp32c3/bt.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 84657b9

Please sign in to comment.