Part Number: MSP-EXP432E401Y
Tool/software: Code Composer Studio
I think about using TI-RTOS, and looked over some example code.
I've seen this UART_write command inside a Task:
UART_write(uart_rs485, TxBuffer[mailbox_msg.buf_index].protocolConverterBuf, mailbox_msg.length);
Questions:
Does this Task stops and waits here until all bytes are received?
Can other Tasks continue to run, while this UART transmission is in progress?
Do i have to use DMA?
Keep in mind that M-Bus / RS485 Communication can be very slow, down to 300 bps.
Thank you!