/*! * \brief Prints the help text to the console * \param io I/O channel to be used */ static void PrintHelp(const FSSH1_StdIOType *io) { /* list your local help here */ #if 0 FSSH1_SendHelpStr((unsigned char*)"shell", (unsigned char*)"Group of shell commands\r\n", io->stdOut); FSSH1_SendHelpStr((unsigned char*)" help|status", (unsigned char*)"Shows trace help or status\r\n", io->stdOut); FSSH1_SendHelpStr((unsigned char*)" i2c cmd on|off", (unsigned char*)"Receive command strings through I2C\r\n", io->stdOut); #else (void)io; #endif }
static void RADIO_PrintHelp(const FSSH1_StdIOType *io) { FSSH1_SendHelpStr("radio", "Group of radio commands\r\n", io->stdOut); FSSH1_SendHelpStr(" help|status", "Shows radio help or status\r\n", io->stdOut); FSSH1_SendHelpStr(" on|off", "Turns the radio on or off\r\n", io->stdOut); FSSH1_SendHelpStr(" sniff on|off", "Turns packet sniffing on or off\r\n", io->stdOut); FSSH1_SendHelpStr(" channel <number>", "Switches to the given channel. Channel must be in the range 0..15\r\n", io->stdOut); FSSH1_SendHelpStr(" power <number>", "Changes the output power. Power must be in the range 0..15\r\n", io->stdOut); FSSH1_SendHelpStr(" send <string>", "Send a string using the wireless transceiver\r\n", io->stdOut); }
/*! * \brief Prints the help text to the console * \param io I/O channel to be used */ static void PrintHelp(const FSSH1_StdIOType *io) { /* list your local help here */ FSSH1_SendHelpStr((unsigned char*)"my help", (unsigned char*)"My help text\r\n", io->stdOut); }