f0x.at1/Core/Inc/commands.h

30 lines
795 B
C
Raw Normal View History

2022-06-06 22:33:30 +02:00
/**
******************************************************************************
* @file commands.h
* @brief Header for command.c file, the command interpreter, a generic one
******************************************************************************
* @author: Thomas Kuschel KW4NZ
* created 2022-06-04
*
******************************************************************************/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __COMMANDS_H_
#define __COMMANDS_H_
#ifdef __cplusplus
extern "C" {
#endif
//struct command_ctx_s *command_inst;
typedef struct command_ctx_s *command_inst_t;
/* function prototypes */
int not_implemented(command_inst_t inst, char *args);
#ifdef __cplusplus
}
#endif
#endif /* __COMMANDS_H_ */