Index: TestSupport.c =================================================================== diff -u -rff72879d15869d55792326d893166849dc7ba41c -r9023ef607793bf8f9e0491da6b84b7da6f8e77de --- TestSupport.c (.../TestSupport.c) (revision ff72879d15869d55792326d893166849dc7ba41c) +++ TestSupport.c (.../TestSupport.c) (revision 9023ef607793bf8f9e0491da6b84b7da6f8e77de) @@ -378,7 +378,7 @@ { U32 index = payload.index; - // Verify voltage index of override + // Verify index of override if ( index <= maxIndex ) { if ( OVERRIDE_OVERRIDE == ovType ) @@ -604,9 +604,6 @@ #ifdef _TD_ msg.hdr.msgID = MSG_ID_TD_SEND_TEST_CONFIGURATION; #endif -#ifdef _RO_ - msg.hdr.msgID = MSG_ID_FP_SEND_TEST_CONFIGURATION; -#endif msg.hdr.payloadLen = MIN( sizeof( testConfig ), ( sizeof( BOOL ) * MAX_TEST_CONFIGS ) ); for ( config = TEST_CONFIG_FIRST; config < NUM_OF_TEST_CONFIGS; ++config ) @@ -623,9 +620,13 @@ payloadPtr += sizeof( BOOL ); } } - // Serialize the message (w/ sync, CRC, and appropriate CAN padding) and add serialized message data to appropriate comm buffer +#ifdef _DD_ + result = serializeMessage( msg, COMM_BUFFER_OUT_DD_CAN_PC, ACK_NOT_REQUIRED ); +#endif +#ifdef _TD_ result = serializeMessage( msg, COMM_BUFFER_OUT_CAN_PC, ACK_NOT_REQUIRED ); +#endif } return result;