xyControl
0.1
Quadrotor Flight Controller on AVR Basis
|
Data Structure for Single-Linked-List for UART Menu. More...
#include <uartMenu.h>
Data Fields | |
uint8_t | cmd |
Byte that triggers the action. More... | |
PGM_P | helpText |
Text (in Flash) printed with help command. More... | |
Task | f |
Action that get's executed. More... | |
MenuEntry * | next |
Next MenuEntry in the linked list. More... | |
Data Structure for Single-Linked-List for UART Menu.
Stores Helptext, command and action.
Definition at line 49 of file uartMenu.h.
uint8_t cmd |
Byte that triggers the action.
Definition at line 50 of file uartMenu.h.
Referenced by addMenuCommand(), findEntry(), uartMenuPrintHelp(), and uartMenuTask().
Task f |
Action that get's executed.
Definition at line 52 of file uartMenu.h.
Referenced by addMenuCommand(), and uartMenuTask().
PGM_P helpText |
Text (in Flash) printed with help command.
Definition at line 51 of file uartMenu.h.
Referenced by addMenuCommand(), and uartMenuPrintHelp().
MenuEntry* next |
Next MenuEntry in the linked list.
Definition at line 53 of file uartMenu.h.
Referenced by addMenuCommand(), findEntry(), reverseList(), uartMenuPrintHelp(), and uartMenuTask().