29 lines
624 B
C
29 lines
624 B
C
/** \file
|
|
* \brief This file declares the serial console commands for the high-level state machine.
|
|
*/
|
|
|
|
#ifndef COMM_STATE_CONSOLECOMMANDS_H
|
|
#define COMM_STATE_CONSOLECOMMANDS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if (CONFIG__FEATURE_COMM_CONSOLE == CONFIG__FEATURE_ENABLED)
|
|
|
|
/* Include Files */
|
|
|
|
/* Preprocessor and Type Definitions */
|
|
|
|
/* Public Variables */
|
|
|
|
/* Public Functions */
|
|
COMM_Console_Command_Result_T COMM_HandleEventCommand(char8 * data, uint32_t size);
|
|
|
|
#endif // (CONFIG__FEATURE_COMM_CONSOLE == CONFIG__FEATURE_ENABLED)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // COMM_STATE_CONSOLECOMMANDS_H
|