Mingyang Sun | e5da4ad | 2019-12-19 15:15:48 +0800 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2019, Arm Limited. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | * | ||||
6 | */ | ||||
7 | |||||
8 | #ifndef __UART_STDOUT_H__ | ||||
9 | #define __UART_STDOUT_H__ | ||||
10 | |||||
11 | #include <stdint.h> | ||||
12 | |||||
13 | /** | ||||
14 | * \brief Output buffer by STDIO. | ||||
15 | */ | ||||
16 | int stdio_output_string(const unsigned char *str, uint32_t len); | ||||
17 | |||||
18 | #endif /* __UART_STDOUT_H__ */ |