30 lines
No EOL
632 B
C
30 lines
No EOL
632 B
C
/** \file
|
|
* \brief This file configures the serial console commands on this CPU.
|
|
*/
|
|
|
|
#ifndef COMM_CONSOLECOMMANDS_H
|
|
#define COMM_CONSOLECOMMANDS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if (CONFIG__FEATURE_COMM_CONSOLE == CONFIG__FEATURE_ENABLED)
|
|
|
|
/* Include Files */
|
|
|
|
/* Preprocessor and Type Definitions */
|
|
|
|
/* Public Variables */
|
|
extern const COMM_Console_Command_Table_Entry_T COMM_Console_Command_Table[];
|
|
extern const uint_fast16_t COMM_N_CONSOLE_COMMANDS;
|
|
|
|
/* Public Functions */
|
|
|
|
#endif // (CONFIG__FEATURE_COMM_CONSOLE == CONFIG__FEATURE_ENABLED)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // COMM_CONSOLECOMMANDS_H
|