drv_config.h 468 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (c) 2006-2022, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2022-02-22 airm2m first version
  9. */
  10. #ifndef __DRV_CONFIG_H__
  11. #define __DRV_CONFIG_H__
  12. #include <rtthread.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. #ifdef SOC_AIR105
  17. #include "air105/spi_config.h"
  18. #include "air105/uart_config.h"
  19. #endif
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23. #endif/* __DRV_CONFIG_H__ */