123456789101112131415161718192021222324252627282930313233 |
- /*
- * File : board.h
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2009, RT-Thread Development Team
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rt-thread.org/license/LICENSE
- *
- * Change Logs:
- * Date Author Notes
- * 2009-09-22 Bernard add board.h to this bsp
- */
- #ifndef __BOARD_H__
- #define __BOARD_H__
- void rt_hw_board_init(void);
- rt_uint8_t *rt_hw_sram_init(void);
- /* SD Card init function */
- void rt_hw_sdcard_init(void);
- int rt_hw_mtd_nand_init(void);
- int sst25vfxx_mtd_init(const char *, unsigned int , unsigned int);
- void pcap_netif_hw_init(void);
- void rt_platform_init(void);
- void rt_hw_usart_init(void);
- void rt_hw_serial_init(void);
- void rt_hw_sdl_start(void);
- void rt_hw_win32_low_cpu(void);
- void rt_hw_exit(void);
- #endif
|