aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKévin Redon <kredon@sysmocom.de>2019-04-17 01:27:41 +0200
committerHarald Welte <laforge@gnumonks.org>2019-04-17 10:24:03 +0200
commit6ddca8b488ea3d7b085ec7fa72a1d33e68270858 (patch)
tree0ad84494c0493718689657e89641adffdbebd495
parentb40c3ee9037b22eff8ebdab89f88aa06a45ab403 (diff)
minor: remove unnecessary hello world command
-rw-r--r--sysmoOCTSIM/main.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/sysmoOCTSIM/main.c b/sysmoOCTSIM/main.c
index 6c4e9e6..369e3ef 100644
--- a/sysmoOCTSIM/main.c
+++ b/sysmoOCTSIM/main.c
@@ -50,12 +50,6 @@ static void board_init()
hri_port_set_PINCFG_DRVSTR_bit(PORT, 0, 11);
}
-DEFUN(hello_fn, cmd_hello,
- "hello", "Hello World example command")
-{
- printf("Hello World!\r\n");
-}
-
static int validate_slotnr(int argc, char **argv, int idx)
{
int slotnr;
@@ -223,7 +217,6 @@ int main(void)
board_init();
command_init("sysmoOCTSIM> ");
- command_register(&cmd_hello);
command_register(&cmd_sim_status);
command_register(&cmd_sim_power);
command_register(&cmd_sim_reset);