Skip to content

Commit

Permalink
fixup! fixup! sys/shell: convert in_tree shell commands to XFA
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Mar 2, 2021
1 parent c61f902 commit 20c0427
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions sys/shell/commands/shell_commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -340,3 +340,17 @@ SHELL_COMMAND(cryptoauth, "Commands for Microchip CryptoAuth devices", _cryptoau
#ifdef MODULE_DFPLAYER
SHELL_COMMAND(dfplayer, "Control a DFPlayer Mini MP3 player", _sc_dfplayer);
#endif

#ifdef MODULE_CONGURE_TEST
#include "congure/test.h"
SHELL_COMMAND(cong_clear, "Clears CongURE state object",
congure_test_clear_state);
SHELL_COMMAND(cong_setup,
"Calls the setup function for the CongURE state object", congure_test_call_setup);
SHELL_COMMAND(cong_init,
"Calls init method of the CongURE state object", congure_test_call_init);
SHELL_COMMAND(cong_imi,
"Calls inter_message_interval method of the CongURE state object", congure_test_call_inter_msg_interval);
SHELL_COMMAND(cong_report,
"Calls a report_* method of the CongURE state object", congure_test_call_report);
#endif

0 comments on commit 20c0427

Please sign in to comment.