Microprocessor and peripheral 2 assignments for AUTH
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

console.h 369 B

1234567891011121314151617181920
  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_ */