2015-02-26 09:51 AM
HI.
I have a board with stm32f407. I Have ported UCOSII on it and in one of tasks enable USART3 and its interrupt handler. USART works correct at sending but my probelm is this:I can not recieve any thing on my interrupt handler related to USART3.I done know if ucOS is effected the interrupt or not?and How I can resolve my problem.thanks for your answers. #ucos #usart-interrupt2015-02-26 01:40 PM
2015-02-26 05:09 PM
You need use the critical section to void other interrupt and set systick interrupt is lower by the default funtion in the ST library.
I recommend that you can use usart idel interrupt+DMA transfer to comlpete your project;