Skip to content
Snippets Groups Projects
Commit 0a1af382 authored by dawehr's avatar dawehr
Browse files

removed the "data_type" struct from commands.h.

- removed the "ID", datatype parameters from MessateType struct in commands.h
- made equivalent changes in commands.c
parent 19fedcae
No related branches found
No related tags found
No related merge requests found
...@@ -73,111 +73,71 @@ struct MessageType MessageTypes[MAX_TYPE_ID] = ...@@ -73,111 +73,71 @@ struct MessageType MessageTypes[MAX_TYPE_ID] =
{ {
// DEBUG // DEBUG
{ {
// ID
DEBUG_ID,
// Command text // Command text
"debug", "debug",
// Type of the command data
stringType,
// Function pointer // Function pointer
&cb_debug &cb_debug
}, },
// PACKETLOG // PACKETLOG
{ {
// ID
PACKETLOG_ID,
// Command text // Command text
"packetlog", "packetlog",
// Type of the command data
stringType,
// Function pointer // Function pointer
&cb_packetlog &cb_packetlog
}, },
// GETPACKETLOGS // GETPACKETLOGS
{ {
// ID
GETPACKETLOGS_ID,
// Command text // Command text
"getpacketlogs", "getpacketlogs",
// Type of the command data
stringType,
// Function pointer // Function pointer
&cb_getpacketlogs &cb_getpacketlogs
}, },
// UPDATE // UPDATE
{ {
// ID
UPDATE_ID,
// Command text // Command text
"update", "update",
// Type of the command data
stringType,
// Function pointer // Function pointer
&cb_update &cb_update
}, },
// BEGINUPDATE // BEGINUPDATE
{ {
// ID
BEGINUPDATE_ID,
// Command text // Command text
"beginupdate", "beginupdate",
// Type of the command data
stringType,
// Function pointer // Function pointer
&cb_beginupdate &cb_beginupdate
}, },
// LOG // LOG
{ {
// ID
LOG_ID,
// Command text // Command text
"log", "log",
// Type of the command data
stringType,
// Function pointer // Function pointer
&cb_log &cb_log
}, },
// RESPONSE // RESPONSE
{ {
// ID
RESPONSE_ID,
// Command text // Command text
"response", "response",
// Type of the command data
stringType,
// Function pointer // Function pointer
&cb_response &cb_response
}, },
// SETCONTROL // SETCONTROL
{ {
// ID
SETCONTROL_ID,
// Command text // Command text
"setcontrol", "setcontrol",
// Type of the command data
floatType,
// Function pointer // Function pointer
&cb_setcontrol &cb_setcontrol
}, },
// GETCONTROL // GETCONTROL
{ {
// ID
GETCONTROL_ID,
// Command text // Command text
"getcontrol", "getcontrol",
// Type of the command data
floatType,
// Function pointer // Function pointer
&cb_getcontrol &cb_getcontrol
}, },
// RESPCONTROL // RESPCONTROL
{ {
// ID
RESPCONTROL_ID,
// Command text // Command text
"respcontrol", "respcontrol",
// Type of the command data
floatType,
// Function pointer // Function pointer
&cb_respcontrol &cb_respcontrol
} }
......
...@@ -14,17 +14,6 @@ enum Message{ ...@@ -14,17 +14,6 @@ enum Message{
END_CHAR = 0xED END_CHAR = 0xED
}; };
/*
* Enumeration of the data types that a callback function may use
* doubleType should get added here at some point
*/
enum DataType
{
floatType, // 00
intType, // 01
stringType // 02
};
/* /*
* Message type IDs used to know what kind of message we are dealing with * Message type IDs used to know what kind of message we are dealing with
* Enumeration used to index the MessageTypes array in commands.c * Enumeration used to index the MessageTypes array in commands.c
...@@ -74,16 +63,7 @@ enum ControllerValueID{ ...@@ -74,16 +63,7 @@ enum ControllerValueID{
* pointers located in commands.c * pointers located in commands.c
*/ */
struct MessageType{ struct MessageType{
/* TODO The ID may not even be needed since it already an enumerated value
* I found some instances of this being used like the following:
* "MessageTypes[LOG_TYPE_ID].ID" which makes no sense since the ID member
* in the MessageType is already set to be equal to the enumeration value
* instead they could have just done "LOG_TYPE_ID" directly since
* MessageTypes[LOG_TYPE_ID].ID always == LOG_TYPE_ID
*/
char ID;
char cmdText[MAX_CMD_TEXT_LENGTH]; char cmdText[MAX_CMD_TEXT_LENGTH];
char cmdDataType;
command_cb * functionPtr; command_cb * functionPtr;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment