drv_config.h 493 B

1234567891011121314151617181920212223242526272829
  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. #include "mm32f3277g8p/spi_config.h"
  19. #endif
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23. #endif