1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/periph_gpio_ll: fix output for GPIO_OUTPUT_OPEN_SOURCE tests

This commit is contained in:
Gunar Schorcht 2022-07-19 17:59:46 +02:00
parent bafb7d53c5
commit a720bd12fc

View File

@ -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]);