board.h 592 B

1234567891011121314151617181920212223242526272829303132
  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. * 2018-03-15 flyingcys add amebaz
  10. */
  11. // <<< Use Configuration Wizard in Context Menu >>>
  12. #ifndef __BOARD_H__
  13. #define __BOARD_H__
  14. #ifdef _LITTLE_ENDIAN
  15. #undef _LITTLE_ENDIAN
  16. #endif
  17. #ifdef SECTION
  18. #undef SECTION
  19. #endif
  20. #include <rthw.h>
  21. #include <rtthread.h>
  22. #include <rtdevice.h>
  23. void rt_hw_board_init(void);
  24. #endif
  25. //*** <<< end of configuration section >>> ***