Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r9d89d7a4b551f6f192d579db61b5a80d81c5efa0 -r75f5cf4a8484f0c08b90edfb4b49a6268e51de65 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 9d89d7a4b551f6f192d579db61b5a80d81c5efa0) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 75f5cf4a8484f0c08b90edfb4b49a6268e51de65) @@ -68,8 +68,15 @@ /// Payload record structure for block message transmission request. typedef struct { - U16 blockedMessages[ MAX_MSGS_BLOCKED_FOR_XMIT ]; + U16 blockedMessages[ MAX_MSGS_BLOCKED_FOR_XMIT ]; ///< Blocked messages array. } BLOCKED_MSGS_DATA_T; + +/// Load cells override payload structure +typedef struct +{ + TEST_OVERRIDE_ARRAY_PAYLOAD_T ovRecord; ///< Test override array payload. + BOOL flag; ///< Flag. +} LC_OVERRIDE_PAYLOAD_T; #pragma pack(pop) // ********** private data ********** @@ -2070,12 +2077,6 @@ *************************************************************************/ void handleTestLoadCellOverrideRequest( MESSAGE_T *message ) { - typedef struct - { - TEST_OVERRIDE_ARRAY_PAYLOAD_T ovRecord; - BOOL flag; - } LC_OVERRIDE_PAYLOAD_T; - LC_OVERRIDE_PAYLOAD_T payload; BOOL result = FALSE;