board.h 686 B

12345678910111213141516171819202122232425262728
  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. /* SD Card init function */
  15. void rt_hw_sdcard_init(void);
  16. int rt_hw_mtd_nand_init(void);
  17. int sst25vfxx_mtd_init(const char *, unsigned int , unsigned int);
  18. void pcap_netif_hw_init(void);
  19. void rt_platform_init(void);
  20. void rt_hw_usart_init(void);
  21. void rt_hw_serial_init(void);
  22. void rt_hw_sdl_start(void);
  23. void rt_hw_win32_low_cpu(void);
  24. void rt_hw_exit(void);
  25. #endif