Question
assert_failed() called inside BleStack_Init() with USE_FULL_ASSERT
assert_failed() is being called inside BleStack_Init() with USE_FULL_ASSERT defined. By default, Stm32CubeMx does not define USE_FULL_ASSERT so assert_failed() would have never been called.
Either way, BleStack_Init() returns zero causing APP_BLE_Init() to initialize gapp and gatt. No problems.
Question: Is the call to assert_failed() by design? Should I ignore assert_failed() during a call to BleStack_Init().
I am using Nucleo-WBA52CG, STM32Cube_FW_WBA_V1.2.0, arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi and Ubuntu 22.
