Hi,
I'm using the UART driver from the PSP 1.30.1 for C6748.
I'd like to have an option to configure the timeout for every receive and send request I make in the application, working in the interrupt mode, not polling.
I worked with DM6435 before, and PSP 1.10.03 for it. There's a special structure for that timeout purpose:
typedef struct PSP_uartDataParam_t
{
char *addr; /**< Buffer Address */
Uint32 timeout; /**< Timeout Value */
} PSP_uartDataParam;
Now, in PSP 1.30.1 there's no such structure. I just pass the pointer to my buffer in the GIO_read/GIO_write.
Is there an option to configure the timeout for each I/O request for UART driver in interrupt mode in BIOS PSP 1.30.1?
Anatoly.