/* Copyright 2017-2023 Arm Limited and/or its affiliates * * SPDX-License-Identifier: Apache-2.0 */ #ifndef __SERIAL_H__ #define __SERIAL_H__ #include /** * \brief Initializes default UART device */ void bsp_serial_init(void); /** * \brief Prints a string through the default UART device */ void bsp_serial_print(char *str); #endif /* __SERIAL_H__ */