auto_test.h 377 B

12345678910111213141516171819202122
  1. #include <rtthread.h>
  2. #include <rtdevice.h>
  3. #include "rtconfig.h"
  4. #if defined BSP_USING_CAN
  5. rt_err_t can_loopback_sample();
  6. #endif
  7. #if defined BSP_USING_GPIO
  8. rt_err_t gpio_toggle_sample();
  9. #endif
  10. #if defined BSP_USING_I2C
  11. rt_err_t i2c_sample();
  12. #endif
  13. #if defined BSP_USING_SPI
  14. rt_err_t fspim_test_sample();
  15. #endif
  16. #if defined BSP_USING_QSPI
  17. rt_err_t qspi_sample();
  18. #endif