aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/main.c b/main.c
index ed788a5..257cebf 100644
--- a/main.c
+++ b/main.c
@@ -19,12 +19,17 @@
*/
#include "board.h"
+#include "temp.h"
void main(void)
{
// Prepare processor and IO
boardInit();
+ // Prepare temperature sensor
+ if (tempInit() != 0)
+ while (1); // Sensor error, halt
+
while (1);
}