1 /* 2 * Copyright (c) 2006-2021, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2009-09-22 Bernard add board.h to this bsp 9 */ 10 #ifndef __BOARD_H__ 11 #define __BOARD_H__ 12 int rt_hw_board_init(void); 13 rt_uint8_t *rt_hw_sram_init(void); 14 15 /* SD Card init function */ 16 void rt_hw_sdcard_init(void); 17 18 int rt_hw_mtd_nand_init(void); 19 int sst25vfxx_mtd_init(const char *, unsigned int , unsigned int); 20 void pcap_netif_hw_init(void); 21 void rt_platform_init(void); 22 void rt_hw_usart_init(void); 23 void rt_hw_serial_init(void); 24 void rt_hw_sdl_start(void); 25 void rt_hw_win32_low_cpu(void); 26 27 void rt_hw_exit(void); 28 #endif 29