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