From a720bd12fcb9d26f9035282a68dfd660a0744837 Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Tue, 19 Jul 2022 17:59:46 +0200 Subject: [PATCH] tests/periph_gpio_ll: fix output for GPIO_OUTPUT_OPEN_SOURCE tests --- tests/periph_gpio_ll/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/periph_gpio_ll/main.c b/tests/periph_gpio_ll/main.c index c3796d0c3b..ddfaf21256 100644 --- a/tests/periph_gpio_ll/main.c +++ b/tests/periph_gpio_ll/main.c @@ -407,7 +407,7 @@ static void test_gpio_ll_init(void) }; is_supported = (0 == gpio_ll_init(port_out, PIN_OUT_0, &conf)); } - printf_optional("Support for output (open drain) with initial value of " + printf_optional("Support for output (open source) with initial value of " "HIGH: %s\n", noyes[is_supported]); @@ -432,7 +432,7 @@ static void test_gpio_ll_init(void) }; is_supported = (0 == gpio_ll_init(port_out, PIN_OUT_0, &conf)); } - printf_optional("Support for output (open drain with pull up) with initial " + printf_optional("Support for output (open source with pull up) with initial " "value of HIGH: %s\n", noyes[is_supported]); @@ -451,7 +451,7 @@ static void test_gpio_ll_init(void) }; is_supported = (0 == gpio_ll_init(port_out, PIN_OUT_0, &conf)); } - printf_optional("Support for output (open drain with pull up) with initial " + printf_optional("Support for output (open source with pull up) with initial " "value of LOW: %s\n", noyes[is_supported]);