We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]
Rating:
Author: MIKROE
Last Updated: 2018-01-19
Package Version: 1.0.0.0
mikroSDK Library: 1.0.0.0
Category: USB
Downloaded: 4845 times
Not followed.
License: MIT license
USB UART 4 click features well-known FT232RL USB-to-UART interface module from FDTI. It provides USB to asynchronous serial data transfer interface, allowing the microcontroller based designs to communicate with the personal computer, in a very simple way.
Do you want to subscribe in order to receive notifications regarding "USB UART 4 click" changes.
Do you want to unsubscribe in order to stop receiving notifications regarding "USB UART 4 click" changes.
Do you want to report abuse regarding "USB UART 4 click".
Examples Description
Example application acts as a simple echo and each character is sent using the available terminal in all MikroElektronika compilers. Also, any other terminal of your choice can be used to write and read the messages.
char uard_rd; void main() { UART1_Init(9600); // Initialize UART module at 9600 bps Delay_ms(100); // Wait for UART module to stabilize UART1_Write_Text("Start"); UART1_Write(13); UART1_Write(10); while (1) { if (UART1_Data_Ready()) { uart_rd = UART1_Read(); // read the received data, UART1_Write(uart_rd); // and send data via UART } } }