From f8887251a7dd158490c7bcb3ba4cd7757fb7f2f7 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 29 Apr 2019 10:20:40 -0400 Subject: temperature sensor draft --- main.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'main.c') 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); } -- cgit v1.2.3