Microprocessor and peripheral 2 assignments for AUTH
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

21 行
369 B

  1. /*!
  2. * \file console.h
  3. * \brief
  4. * A simple serial console implementation for out thermostat
  5. *
  6. * Author: Christos Choutouridis AEM: 8997
  7. * email : <cchoutou@ece.auth.gr>
  8. */
  9. #ifndef CONSOLE_H_
  10. #define CONSOLE_H_
  11. #include <hal.h>
  12. #include "thermostat.h"
  13. #include <string.h>
  14. extern float_t temp_get_current (void);
  15. void console (void);
  16. #endif /* CONSOLE_H_ */