Microprocessor and peripheral 2 assignments for AUTH
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.
 
 
 
 
 
 

21 lines
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_ */