stm32: Fix USART3 on stm32f1 and stm32f2
Commit 6a3c357a incorrectly disabled support for USART3 on stm32f1 and
stm32f2 - restore that support.
Also, add support for USART3 on PD9/PD8 on stm32f103.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
@@ -160,6 +160,10 @@ gpio_peripheral(uint32_t gpio, uint32_t mode, int pullup)
|
||||
// TIM3 full remap
|
||||
stm32f1_alternative_remap(AFIO_MAPR_TIM3_REMAP_FULLREMAP_Msk,
|
||||
AFIO_MAPR_TIM3_REMAP_FULLREMAP);
|
||||
} else if ((gpio == GPIO('D', 8) || gpio == GPIO('D', 9)) && func == 7) {
|
||||
// USART3 remap
|
||||
stm32f1_alternative_remap(AFIO_MAPR_USART3_REMAP_FULLREMAP_Msk,
|
||||
AFIO_MAPR_USART3_REMAP_FULLREMAP);
|
||||
} else if ((gpio == GPIO('D', 12)
|
||||
|| gpio == GPIO('D', 13)
|
||||
|| gpio == GPIO('D', 14)
|
||||
|
||||
Reference in New Issue
Block a user