2017-05-17 03:50 AM
HI, not much experice with Cortex Devices,
Is there any Software Interrupt Example, for M0/M0+ devices.
I am using STM32 Cube's HAL structure, with a F091 Nucleo board.
Just found a void SVC_Handler(void) in the stm32f0xx_it.c,
I don't know to implement this, any idea?
Thanks!
#stm32f0-exti-swi #svcSolved! Go to Solution.
2017-05-17 05:50 AM
Can't you just set an IRQ in the NVIC, will look for a specific example
SVC I'd assume you just write handler code, it's a C function. Review Cortex-M0 docs for specific insight
2017-05-17 05:50 AM
Can't you just set an IRQ in the NVIC, will look for a specific example
SVC I'd assume you just write handler code, it's a C function. Review Cortex-M0 docs for specific insight
2017-05-18 03:03 PM
HAL_NVIC_SetPendingIRQ(USART1_IRQn);
HAL_NVIC_ClearPendingIRQ(USART1_IRQn);