Question
Is it possible to configure Software interrupts in QubeMX?
We rely on QubeMX to generate our boilerplate and initialization code as much as possible. Currently we configure a Software interrupt programatically via
HAL_EXTI_SetConfigLine(...);
HAL_NVIC_SetPriority(...);
HAL_EXTI_RegisterCallback(...);
HAL_NVIC_EnableIRQ(...);And later we invoke the code via
HAL_EXTI_GenerateSWI(...);This is finde and it works. However I'm curious if this can be assisted by CubeMX? I see there are EXTI lines available in the NVIC section, but I can't enable them.
