Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -reb64545b0bddac878e5d930272c6c8068bb4089a -r8cfb168cdf03558cd271b3a6e9d3f7a545a25f9d --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision eb64545b0bddac878e5d930272c6c8068bb4089a) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 8cfb168cdf03558cd271b3a6e9d3f7a545a25f9d) @@ -5032,9 +5032,9 @@ BOOL result = FALSE; // Verify payload length - if ( sizeof( TEST_OVERRIDE_PAYLOAD_T ) == message->hdr.payloadLen ) + if ( sizeof( TEST_OVERRIDE_ARRAY_PAYLOAD_T ) == message->hdr.payloadLen ) { - memcpy( &payload, message->payload, sizeof( TEST_OVERRIDE_PAYLOAD_T ) ); + memcpy( &payload, message->payload, sizeof( TEST_OVERRIDE_ARRAY_PAYLOAD_T ) ); result = TRUE; selfTestBubble( (BUBBLES_T)payload.index ); }