A utility library to retarget the standard input/output (STDIO) messages to a UART port. With this library, you can directly print messages on a UART terminal using printf()
. You can specify the TX pin, RX pin, and the baud rate through the cy_retarget_io_init()
function. The UART HAL object is externally accessible so that you can use it with other UART HAL functions.
NOTE: The standard library is not standard in how it treats an I/O stream. Some implement a data buffer by default. The buffer is not flushed until it is full. In that case it may appear that your I/O is not working. You should be aware of how the library buffers data, and you should identify a buffering strategy and buffer size for a specified stream. If you supply a buffer, it must exist until the stream is closed. The following line of code disables the buffer for the standard library that accompanies the GCC compiler:
setvbuf( stdin, NULL, _IONBF, 0 );
NOTE: If the application is built using newlib-nano, by default, floating point format strings (%f) are not supported. To enable this support, you must add -u _printf_float
to the linker command line.
NOTE: In general, console prints such as printf() should not be performed in ISR context. It must definitely not be called in ISR context when CY_RTOS_AWARE
is defined, as the threat safety implementation disallows such calls.
NOTE: If the application is built without HAL support (i.e., CY_USING_HAL is not defined), then the UART must be initialized using PDL function calls prior to being passed into the cy_retarget_io_init()
function. See Quick Start (PDL Only) section below.
To avoid concurrent access to the UART peripheral in a RTOS environment, the ARM and IAR libraries use mutexes to control access to stdio streams. For Newlib (GCC_ARM), the mutex must be implemented in _write() and can be enabled by adding DEFINES+=CY_RTOS_AWARE
to the Makefile. For all libraries, the program must start the RTOS kernel before calling any stdio functions.
HAL support is required for retarget-io in an RTOS environment. If your project does not include HAL support, you must manually manage concurrency in your application.
-
Add
#include "cy_retarget_io.h"
-
Call
cy_retarget_io_init(CYBSP_DEBUG_UART_TX, CYBSP_DEBUG_UART_RX, CY_RETARGET_IO_BAUDRATE);
CYBSP_DEBUG_UART_TX
andCYBSP_DEBUG_UART_RX
pins are defined in the BSP andCY_RETARGET_IO_BAUDRATE
is set to 115200. You can use a different baud rate if you prefer. -
Start printing using
printf()
These instructions apply when the UART interface is provided by the SCB peripheral directly using a PDL configured and initialized SCB object. Only relevant when HAL is unavailable. UART interfaces other than SCB are not supported at this time.
- Add
#include "cy_retarget_io.h"
- Initialize and enable your UART hardware using PDL function calls. The DEBUG_UART must be defined and configured in the Device Configurator tool.
Cy_SCB_UART_Init(DEBUG_UART_HW, &DEBUG_UART_config, NULL);
Cy_SCB_UART_Enable(DEBUG_UART_HW);
- Call
cy_retarget_io_init(DEBUG_UART_HW);
- Start printing using
printf()
If you want to use only '\n' instead of "\r\n" for printing a new line using printf(), define the macro CY_RETARGET_IO_CONVERT_LF_TO_CRLF
using the DEFINES variable in the application Makefile. The library will then append '\r' before '\n' character on the output direction (STDOUT). No conversion occurs if "\r\n" is already present.
By default, floating point support is enabled in printf. If floating point values will not be used in printed strings, this functionality can be disabled to reduece flash consumption. To disable floating support, add the following to the application makefile: DEFINES += CY_RETARGET_IO_NO_FLOAT
.
- API Reference Guide
- Cypress Semiconductor, an Infineon Technologies Company
- Infineon GitHub
- ModusToolbox™
- PSoC™ 6 Code Examples using ModusToolbox™ IDE
- ModusToolbox™ Software
- PSoC™ 6 Resources - KBA223067
© Cypress Semiconductor Corporation (an Infineon company) or an affiliate of Cypress Semiconductor Corporation, 2019-2024.