diff options
author | Oliver <oli1111@web.de> | 2021-04-05 21:58:57 +0200 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2021-04-07 13:06:13 -0400 |
commit | 41999eb94d8cc8a2c119a010249f085093ee2d98 (patch) | |
tree | d2a642f41f14af673045509ba71def882fc69ee8 /src/stm32/can.c | |
parent | 689c2f9baf835b55cdbb68d78b0913d8ca6df317 (diff) | |
download | kutter-41999eb94d8cc8a2c119a010249f085093ee2d98.tar.gz kutter-41999eb94d8cc8a2c119a010249f085093ee2d98.tar.xz kutter-41999eb94d8cc8a2c119a010249f085093ee2d98.zip |
stm32: CAN Kconfig typo
Fixed simple typo in the Kconfig and can.c. stm32f4 CAN Pins
Signed-off-by: Oliver Walter <oli1111@web.de>
Diffstat (limited to 'src/stm32/can.c')
-rw-r--r-- | src/stm32/can.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stm32/can.c b/src/stm32/can.c index af10f6ab..30b2886d 100644 --- a/src/stm32/can.c +++ b/src/stm32/can.c @@ -27,7 +27,7 @@ #define GPIO_Rx GPIO('B', 8) #define GPIO_Tx GPIO('B', 9) #endif -#if CONFIG_STM32_CANBUS_PI8_PH13 +#if CONFIG_STM32_CANBUS_PI9_PH13 DECL_CONSTANT_STR("RESERVE_PINS_CAN", "PI9,PH13"); #define GPIO_Rx GPIO('I', 9) #define GPIO_Tx GPIO('H', 13) |