1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #4879 from gebart/pr/tests-periph-gpio-help-text

tests/periph_gpio: Fix mixed up command descriptions
This commit is contained in:
Joakim Nohlgård 2016-03-01 10:20:32 +01:00
commit 31548c6027

View File

@ -220,9 +220,9 @@ static int toggle(int argc, char **argv)
} }
static const shell_command_t shell_commands[] = { static const shell_command_t shell_commands[] = {
{ "init_in", "initialize pin as output", init_in }, { "init_in", "initialize pin as input", init_in },
{ "init_out", "initialize pin as input", init_out }, { "init_out", "initialize pin as output", init_out },
{ "init_int", "initialize pin as EXTI", init_int }, { "init_int", "initialize pin as input with interrupt", init_int },
{ "read", "read pin status", read }, { "read", "read pin status", read },
{ "set", "set pin to HIGH", set }, { "set", "set pin to HIGH", set },
{ "clear", "set pin to LOW", clear }, { "clear", "set pin to LOW", clear },