This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

SPPDemo console input slow.

Hi,

 In SPPDemo with TI-RTOS the console input is very slow.  I see that they have not used the UART_Write and UART_Read instead they have created their own in HALCFG which has painfully slow input. Is there any fix for this?

Thanks,

Gautam.

  • There is a BTPS_Delay(..) which causes it to slow down. Basically Console_read(..) read's the buffers filled from the interrupt handler of UART. The Console_read(..) could have been made a blocking call by blocking on a semaphore and the semaphore counted up in the interrupt handler. This way there would not be a need for the delay.