diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-10-19 10:14:24 -0400 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-10-19 10:14:24 -0400 |
commit | 52c5747d2e873d4946d211c548c03498b72c1fb5 (patch) | |
tree | d2c571b8583d75e956fe7b822ae9c9fdd637a21e /boards | |
parent | 6210e1c233a3ee66274389e85889b0681102378d (diff) | |
download | Sensor-Watch-52c5747d2e873d4946d211c548c03498b72c1fb5.tar.gz Sensor-Watch-52c5747d2e873d4946d211c548c03498b72c1fb5.tar.bz2 Sensor-Watch-52c5747d2e873d4946d211c548c03498b72c1fb5.zip |
getting the sensor watch dev board working
Diffstat (limited to 'boards')
-rw-r--r-- | boards/OSO-FEAL-A1-00/pins.h (renamed from boards/OSO-MISC-21-013/pins.h) | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/boards/OSO-MISC-21-013/pins.h b/boards/OSO-FEAL-A1-00/pins.h index a4e936a4..47d925cc 100644 --- a/boards/OSO-MISC-21-013/pins.h +++ b/boards/OSO-FEAL-A1-00/pins.h @@ -19,14 +19,14 @@ // LEDs #define WATCH_INVERT_LED_POLARITY -#define RED GPIO(GPIO_PORTB, 22) -#define WATCH_RED_TCC_PINMUX PINMUX_PB22F_TCC0_WO2 -#define WATCH_RED_TCC_CHANNEL 2 +#define RED GPIO(GPIO_PORTA, 4) +#define WATCH_RED_TCC_CHANNEL 0 +#define WATCH_RED_TCC_PINMUX PINMUX_PA04E_TCC0_WO0 #ifdef WATCH_SWAP_LED_PINS - #define GREEN GPIO(GPIO_PORTA, 4) - #define WATCH_GREEN_TCC_CHANNEL 0 - #define WATCH_GREEN_TCC_PINMUX PINMUX_PA04E_TCC0_WO0 + #define GREEN GPIO(GPIO_PORTB, 22) + #define WATCH_GREEN_TCC_CHANNEL 2 + #define WATCH_GREEN_TCC_PINMUX PINMUX_PB22F_TCC0_WO2 #else #define GREEN GPIO(GPIO_PORTB, 23) #define WATCH_GREEN_TCC_CHANNEL 3 |