usbuart5 2.1.0.0
Main Page

USB UART 5 click

‍USB UART 5 Click is a compact add-on board with a general-purpose USB to UART serial interface. This board features the CP2110, a highly-integrated USB-to-UART bridge controller from Silicon Labs. The CP2110 uses the standard USB HID device class, requiring no custom driver and a UART interface that implements all RS-232 signals, including control and hardware handshaking, so existing system firmware does not need to be modified. The UART capabilities of the CP2110 also include baud rate support from 300 to 1Mbps, hardware flow control, RS-485 support, and GPIO signals that are user-defined for status and control information.

click Product page


Click library

  • Author : Nenad Filipovic
  • Date : Jan 2023.
  • Type : UART type

Software Support

We provide a library for the USB UART 5 Click as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.

Package can be downloaded/installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Library Description

‍This library contains API for USB UART 5 Click driver.

Standard key functions :

Example key functions :

Example Description

‍This example reads and processes data from USB UART 5 Click boardâ„¢. The library initializes and defines the UART bus drivers to transmit or receive data.

The demo application is composed of two sections :

Application Init

‍Initializes driver, wake-up module, and performs the default configuration.

void application_init ( void )
{
log_cfg_t log_cfg;
usbuart5_cfg_t usbuart5_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
usbuart5_cfg_setup( &usbuart5_cfg );
USBUART5_MAP_MIKROBUS( usbuart5_cfg, MIKROBUS_1 );
if ( UART_ERROR == usbuart5_init( &usbuart5, &usbuart5_cfg ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
usbuart5_default_cfg ( &usbuart5 );
log_info( &logger, " Application Task " );
}
#define USBUART5_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition usbuart5.h:101
void application_init(void)
Definition main.c:36

Application Task

‍Any data which the host PC sends via HidUartExample will be sent over USB to the click board and then it will be read and echoed back by the MCU to the PC where the terminal program will display it. Results are being sent to the UART Terminal, where you can track their changes.

void application_task ( void )
{
char rx_data = 0;
if ( usbuart5_generic_read ( &usbuart5, &rx_data, 1 ) )
{
if ( usbuart5_generic_write ( &usbuart5, &rx_data, 1 ) )
{
log_printf( &logger, "%c", rx_data );
}
}
}
void application_task(void)
Definition main.c:67

Note

‍Make sure to download and install CP2110/4 Software package for Windows/Mac/Linux on the host PC.

The full application code, and ready to use projects can be installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Other Mikroe Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.USBUART5

Additional notes and informations

Depending on the development board you are using, you may need USB UART click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. UART terminal is available in all MikroElektronika compilers.