change name saveparams to saverfparams

This commit is contained in:
Harald Pichler 2017-09-07 21:07:24 +02:00
parent 64b2750de3
commit 3a560c79f9

View file

@ -76,11 +76,11 @@ SHELL_COMMAND(ccathresholds_command,
"ccathresholds", "ccathresholds",
"ccathresholds <threshold: change cca thresholds -91 to -61 dBm (default -77)", "ccathresholds <threshold: change cca thresholds -91 to -61 dBm (default -77)",
&shell_ccathresholds_process); &shell_ccathresholds_process);
PROCESS(shell_saveparam_process, "saveparam"); PROCESS(shell_saverfparam_process, "saverfparam");
SHELL_COMMAND(saveparam_command, SHELL_COMMAND(saverfparam_command,
"saveparam", "saverfparam",
"saveparam <> save parameters txpower, channel, panid to eeprom settingsmanager", "saverfparam <> save parameters txpower, channel, panid to eeprom settingsmanager",
&shell_saveparam_process); &shell_saverfparam_process);
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
PROCESS_THREAD(shell_txpower_process, ev, data) PROCESS_THREAD(shell_txpower_process, ev, data)
@ -183,7 +183,7 @@ PROCESS_THREAD(shell_panid_process, ev, data)
PROCESS_END(); PROCESS_END();
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
PROCESS_THREAD(shell_saveparam_process, ev, data) PROCESS_THREAD(shell_saverfparam_process, ev, data)
{ {
PROCESS_BEGIN(); PROCESS_BEGIN();
/* Save txpower */ /* Save txpower */
@ -196,7 +196,7 @@ PROCESS_THREAD(shell_saveparam_process, ev, data)
/* Save panid */ /* Save panid */
params_save_panid(); params_save_panid();
shell_output_str(&rfchannel_command, "saveparam done ", 0); shell_output_str(&rfchannel_command, "saverfparam done ", 0);
PROCESS_END(); PROCESS_END();
} }
@ -208,7 +208,7 @@ shell_merkur_init(void)
shell_register_command(&rfchannel_command); shell_register_command(&rfchannel_command);
shell_register_command(&ccathresholds_command); shell_register_command(&ccathresholds_command);
shell_register_command(&panid_command); shell_register_command(&panid_command);
shell_register_command(&saveparam_command); shell_register_command(&saverfparam_command);
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/