2022-03-08 03:28 AM
how to use UARTto receive data on interrupt instead of using this api (sd_lld_read) as this works in blocking mode in while loop.
Micro is SPC560P50L3.
Is there is an example to use the Uart Rx on interrupt.
As we use this method in Stm32.
Solved! Go to Solution.
2022-03-17 07:25 AM
Hello ,
I recommend you to use some multi-threads mecanism in some RTOS FreeRTOS-RLA or Chibios-HAL.
Otherwise , you need to redevelop sd_lld_read UART Driver
Best Regards
Erwan
2022-03-17 07:25 AM
Hello ,
I recommend you to use some multi-threads mecanism in some RTOS FreeRTOS-RLA or Chibios-HAL.
Otherwise , you need to redevelop sd_lld_read UART Driver
Best Regards
Erwan
2022-04-17 11:02 PM
Hello
Is there any other methods to enable uart interrupt? Like using IRQs or ...?