Skip to content

Commit

Permalink
Merge branch 'bugfix/fix_ble_intr_alloc_failure' into 'release/v5.0'
Browse files Browse the repository at this point in the history
fix(bt/controller): Change level of BLE interrupt to avoid allocation failure

See merge request espressif/esp-idf!32199
  • Loading branch information
Isl2017 committed Jul 25, 2024
2 parents a528f13 + 84657b9 commit 13033ac
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 13033ac

Please sign in to comment.