diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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); } |