From 11b2b488efbb967ff03f253051758e98881213e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Nohlg=C3=A5rd?= Date: Mon, 22 Feb 2016 21:50:27 +0100 Subject: [PATCH] tests/periph_gpio: Fix mixed up command descriptions --- tests/periph_gpio/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/periph_gpio/main.c b/tests/periph_gpio/main.c index fde10a49c8..2866058556 100644 --- a/tests/periph_gpio/main.c +++ b/tests/periph_gpio/main.c @@ -220,9 +220,9 @@ static int toggle(int argc, char **argv) } static const shell_command_t shell_commands[] = { - { "init_in", "initialize pin as output", init_in }, - { "init_out", "initialize pin as input", init_out }, - { "init_int", "initialize pin as EXTI", init_int }, + { "init_in", "initialize pin as input", init_in }, + { "init_out", "initialize pin as output", init_out }, + { "init_int", "initialize pin as input with interrupt", init_int }, { "read", "read pin status", read }, { "set", "set pin to HIGH", set }, { "clear", "set pin to LOW", clear },