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 --- board.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'board.c') diff --git a/board.c b/board.c index 26db473..27af0da 100644 --- a/board.c +++ b/board.c @@ -43,5 +43,9 @@ void boardInitPins(void) // All pins should start at a low state P1OUT = 0; P2OUT = 0; + + // Set I2C pins to the proper mode + P1SEL |= TEMP_SDA | TEMP_SCL; + P1SEL2 |= TEMP_SDA | TEMP_SCL; } -- cgit v1.2.3