diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2019-04-29 10:20:40 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2019-04-29 10:20:40 -0400 |
commit | f8887251a7dd158490c7bcb3ba4cd7757fb7f2f7 (patch) | |
tree | 8f5bcce7dbd46d7b9346b45f45d2856af7377771 /board.c | |
parent | 249fa2dd7bcd8ed0be64a1a1b36da499d6bbaca1 (diff) |
temperature sensor draft
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; } |