board.h 401 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2020-2021, Bluetrum Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2020-11-18 greedyhao first version
  9. */
  10. #ifndef BOARD_H__
  11. #define BOARD_H__
  12. #include <rtthread.h>
  13. #include <ab32vgx.h>
  14. #ifdef RT_USING_PIN
  15. #include <drv_gpio.h>
  16. #endif
  17. #ifdef RT_USING_WDT
  18. #include <drv_wdt.h>
  19. #endif
  20. #endif