i2c_demo.h 400 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c)
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Email Notes
  8. * 2022-04-11 Kevin.Liu kevin.liu.mchp@gmail.com First Release
  9. */
  10. #ifndef __APPLICATION_I2C_H_
  11. #define __APPLICATION_I2C_H_
  12. #include <rtthread.h>
  13. /**
  14. * @brief External function definitions
  15. *
  16. */
  17. rt_err_t i2c_demo_run(void);
  18. #endif // __APPLICATION_I2C_H_