You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
261 B

3 years ago
  1. /**
  2. * @file temp.c
  3. * @author Finny (tianjialong0106@163.com)
  4. * @brief Temperature sensor
  5. * @version 0.1
  6. * @date 2022-09-26
  7. *
  8. * @copyright Copyright (c) 2022
  9. *
  10. */
  11. #include "temp.h"
  12. void T_temp_init(void) {}
  13. double T_temp_get_data(void) { return 0.0; }