aboutsummaryrefslogtreecommitdiffstats
path: root/board.c
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2019-04-29 10:20:40 -0400
committerClyne Sullivan <tullivan99@gmail.com>2019-04-29 10:20:40 -0400
commitf8887251a7dd158490c7bcb3ba4cd7757fb7f2f7 (patch)
tree8f5bcce7dbd46d7b9346b45f45d2856af7377771 /board.c
parent249fa2dd7bcd8ed0be64a1a1b36da499d6bbaca1 (diff)
temperature sensor draft
Diffstat (limited to 'board.c')
-rw-r--r--board.c4
1 files changed, 4 insertions, 0 deletions
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;
}