1 /*
2  * @ : Copyright (c) 2021 Phytium Information Technology, Inc.
3  *
4  * SPDX-License-Identifier: Apache-2.0.
5  *
6  * @Date: 2021-04-07 09:53:07
7  * @LastEditTime: 2021-04-07 17:54:32
8  * @Description:  This files is for
9  *
10  * @Modify History:
11  *  Ver   Who        Date         Changes
12  * ----- ------     --------    --------------------------------------
13  */
14 
15 #include "ft_parameters.h"
16 #include "ft_uart_hw.h"
17 
outbyte(char byte)18 void outbyte(char byte)
19 {
20     FUart_SendByte(FT_STDOUT_BASEADDRESS, byte);
21 }
22