Crash Debugging on STM32N6-DK: ATON_ENABLE(EPOCHCTRL)
I am using the STM32N6-DK board.
I am trying to execute an AI model on the STM32N6-DK board, following the instructions on the website below.
How to run AI models from model zoo on STM32N6 - STMicroelectronics Community
However, the software crashes when I try to execute it.

After examining the process, it seems to fail at the following sequence of function calls:
c
LL_ATON_RT_Main(&NN_Instance_Default); LL_ATON_RT_RunEpochBlock(network_instance); __LL_ATON_RT_ExecStartEpochBlock(nn_instance->exec_state.current_epoch_block, nn_instance); ATON_ENABLE(EPOCHCTRL, ecId);




The crash occurs after calling
What could be the potential causes for this problem?
