aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32L1xx/UART
diff options
context:
space:
mode:
Diffstat (limited to 'testhal/STM32L1xx/UART')
-rw-r--r--testhal/STM32L1xx/UART/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32L1xx/UART/main.c b/testhal/STM32L1xx/UART/main.c
index 1039b781d..30f4c3326 100644
--- a/testhal/STM32L1xx/UART/main.c
+++ b/testhal/STM32L1xx/UART/main.c
@@ -129,8 +129,8 @@ int main(void) {
* PA9 and PA10 are routed to USART1.
*/
uartStart(&UARTD1, &uart_cfg_1);
- palSetPadMode(GPIOA, 9, PAL_MODE_ALT_OUTPUT_PUSHPULL(7));
- palSetPadMode(GPIOA, 10, PAL_MODE_ALT_INPUT(7));
+ palSetPadMode(GPIOA, 9, PAL_MODE_ALTERNATE(7));
+ palSetPadMode(GPIOA, 10, PAL_MODE_ALTERNATE(7));
/*
* Starts the transmission, it will be handled entirely in background.