BLE (UTIL_SEQ_SetTask) and EXTI conflict?
I made a PCB board with STM32WB5MMG, which receives the data of max30112 through external falling edge interrupt and sends it through BLE notify. However, once I add the execution task UTIL_SEQ_SetTask(1<<CFG_TASK_SPO2_EVT_ID,CFG_SCH_PRIO_0); in HAL_GPIO_EXTI_Callback;
My program just fails.The interrupt callback function is shown in the figure below:

- If you comment UTIL_SEQ_SetTask( 1<<CFG_TASK_SPO2_EVT_ID,CFG_SCH_PRIO_0), the program runs normally.
- The task (CFG TASK SPO2 EVT_ID) just notify two uint8_t data with a value of 0.And I use a timer to trigger tasks regularly to verify that the characteristic of BLE notify is normal.(It's ok.)
At present, I guess that the EXTI and BLE notify features will conflict, or there is some problem between EXTI and UTIL_SEQ_SetTask. How can I verify it?
Thanks in advance.

