USB UART Click Board
USB UART Click Board
The USB UART Click Board™ offers a USB to asynchronous serial data (UART) interface, allowing the microcontroller-based designs to communicate with the personal computer, in a very simple way. It is equipped with the FT232RL, a very popular USB to UART interface IC, used on many MikroElektronika devices - both for its reliability and simplicity.
The USB UART Click Board™ is used whenever there is a need for seamless and effortless interfacing of the UART lines to a personal computer. It can be used with any UART terminal, like the one found in MikroElektronika compilers.
Software Support
We provide an example for the USB UART Click Board™ inside all of our compilers. You can navigate to the demo using Project Explorer placed inside the folder named same as your development system.
Example 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 } } }
USB UART Click Board
Frequently Asked Questions
Have a Question?
Be the first to ask a question about this.