Is it possible to send word(2 byte) data through UART when we set data wordlength of 8 bits???
Hi,
I am using STM32F446ZE NUCLEo board. This board has many uarts and the Data Register is of 32 bit wide but maximum can be used is 9 bits, others are reserved.
I have configured one UART channel UART5 and I am able to send series of byte data from my terminal to this channel. Like below,
0x21 0x22 0x23 0x24 0x25 0x26 0x27 0x28
What I want to know is, is it possible to send word (2 byte) data from my terminal and handle the data in the controller? Like 0x5354 0x5455 0x5556
I have a requirement for this kind of data but I am stuck as I know it's not possible atleast for my knowledge.
Please help.