summaryrefslogtreecommitdiff
path: root/source/LCM/include/t_command_protocol.h
diff options
context:
space:
mode:
authorxmarvla <vlatko.markovic@seavus.com>2012-03-19 10:07:32 +0100
committerViktor Mladenovski <viktor.mladenovski@seavus.com>2012-05-25 14:44:23 +0200
commit682f6b9fbd2f7296b53896b0d534627e7bcf255d (patch)
treea40f183581ca0f0a731fad490e1f6203e86f2e00 /source/LCM/include/t_command_protocol.h
parent9dc2897fef041426347e80385707b7c86324c63e (diff)
Fix flashing hang when wolverine is used.
LCM adjustment for new USB RAM based driver in DBDT environment. ST-Ericsson ID: 421630 ST-Ericsson FOSS-OUT ID: STETL-FOSS-OUT-10204 Change-Id: I2f2835b56857eb9640501ff681400517600ccdef Depends-On: I6112822704abd420e9a68d4b542234245a734773 Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/52545 Tested-by: Vlatko STENKOSKI Reviewed-by: QABUILD Reviewed-by: QATEST Reviewed-by: Zoran ANCEVSKI <zoran.ancevski@seavus.com>
Diffstat (limited to 'source/LCM/include/t_command_protocol.h')
-rw-r--r--source/LCM/include/t_command_protocol.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/LCM/include/t_command_protocol.h b/source/LCM/include/t_command_protocol.h
index 2ca51c6..5896727 100644
--- a/source/LCM/include/t_command_protocol.h
+++ b/source/LCM/include/t_command_protocol.h
@@ -30,9 +30,9 @@
*/
typedef enum {
COMMAND_TYPE, /**< Command type of the packet.*/
- COMMAND_ACK, /**< Acknwoledge type of the packet.*/
+ COMMAND_ACK, /**< Acknowledge type of the packet.*/
GENERAL_RESPONSE, /**< General response type of the packet.*/
- GENERAL_RESPONSE_ACK /**< General response acknwoledge type of the packet.*/
+ GENERAL_RESPONSE_ACK /**< General response acknowledge type of the packet.*/
} CommandType_t;
@@ -52,7 +52,7 @@ typedef struct Buffer_s {
typedef struct Result_s {
ErrorCode_e Status; /**< Status send by the general response. */
Buffer_t *Response_p; /**< Buffer holding data that should be
- returned trough the general response */
+ returned trough the general response */
} Result_t;
/**
@@ -62,7 +62,7 @@ typedef struct CommandData_s {
uint8 CommandNr; /**< Number of the command. */
uint8 ApplicationNr;/**< Number of the application (command) group. */
uint16 SessionNr; /**< Number of the session in which this command
- was received.*/
+ was received.*/
CommandType_t Type; /**< Command type. */
Buffer_t Payload; /**< Holds the data received with the command.*/
} CommandData_t;