aboutsummaryrefslogtreecommitdiffstats
path: root/board.c
diff options
context:
space:
mode:
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;
}