drv_spi.h 375 B

12345678910111213141516171819202122
  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-03-04 stevetong459 first version
  9. */
  10. #ifndef __DRV_SPI_H__
  11. #define __DRV_SPI_H__
  12. #include "board.h"
  13. struct apm32_spi_cs
  14. {
  15. GPIO_T *GPIOx;
  16. uint16_t GPIO_Pin;
  17. };
  18. #endif /*__DRV_SPI_H__ */