Loading...
Searching...
No Matches
help.c
1/***********************************************************************************
2 * @file help.c *
3 * @author Matt Ricci *
4 * @addtogroup Shell *
5 * *
6 * @{ *
7 ***********************************************************************************/
8
9#include "stdint.h"
10
11#include "shell.h"
12
13static void Help_exec(Shell *, uint8_t *);
14
15DEFINE_PROGRAM_HANDLE("help", Help_exec)
16
17/* =============================================================================== */
22static void Help_exec(Shell *shell, uint8_t *flags) {
23 shell->help(shell);
24}
25
void(* help)(struct Shell *)
Definition shell.h:50
Struct definition for shell interface.
Definition shell.h:48