drv_config.h 456 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) 2020-2022, CQ 100ask Development Team
  3. *
  4. * Change Logs:
  5. * Date Author Notes
  6. * 2022-05-29 Alen first version
  7. */
  8. #ifndef __DRV_CONFIG_H__
  9. #define __DRV_CONFIG_H__
  10. #include <board.h>
  11. #include <rtthread.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #if defined(SOC_SERIES_MM32F3277)
  16. #include "mm32f3277g8p/dma_config.h"
  17. #include "mm32f3277g8p/uart_config.h"
  18. #endif
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22. #endif