Index: firmware/App/Drivers/EjectorMotor.h =================================================================== diff -u -raa6d45143096dfab776ce2ed7c775cfe2dd6db18 -r5dc5b0076f547c0c14e71f0e5373112e9c890f4f --- firmware/App/Drivers/EjectorMotor.h (.../EjectorMotor.h) (revision aa6d45143096dfab776ce2ed7c775cfe2dd6db18) +++ firmware/App/Drivers/EjectorMotor.h (.../EjectorMotor.h) (revision 5dc5b0076f547c0c14e71f0e5373112e9c890f4f) @@ -38,7 +38,7 @@ void initEjectorMotor( void ); BOOL setEjectorMotorSpeed( F32 rpm ); F32 getEjectorMotorSetSpeed( void ); -void execEjectorMotor( void ); +void execEjectorMotorRamping( void ); BOOL testSetEjectorMotorSpeed( MESSAGE_T *message ); Index: firmware/App/Services/Messaging.c =================================================================== diff -u -raa6d45143096dfab776ce2ed7c775cfe2dd6db18 -r5dc5b0076f547c0c14e71f0e5373112e9c890f4f --- firmware/App/Services/Messaging.c (.../Messaging.c) (revision aa6d45143096dfab776ce2ed7c775cfe2dd6db18) +++ firmware/App/Services/Messaging.c (.../Messaging.c) (revision 5dc5b0076f547c0c14e71f0e5373112e9c890f4f) @@ -480,9 +480,9 @@ * @brief * The handleVersionRequestMessage function handles a UI request for TD * version information. - * @details \b Message \b Sent: MSG_ID_TD_VERSION_REPONSE + * @details \b Message \b Sent: MSG_ID_TD_VERSION_RESPONSE * @details \b Inputs: none - * @details \b Outputs: UI version info. + * @details \b Outputs: uiVersionRecord * @param message Pointer to the UI version request message which contains * the UI version information as well. * @return TRUE if request handled successfully, FALSE if not @@ -507,7 +507,7 @@ tdVersionRecord.compatibilityRev = SW_COMPATIBILITY_REV; // Send TD version information - result = sendMessage( MSG_ID_TD_VERSION_REPONSE, COMM_BUFFER_OUT_CAN_TD_BROADCAST, (U08*)&tdVersionRecord, sizeof( TD_VERSIONS_T ) ); + result = sendMessage( MSG_ID_TD_VERSION_RESPONSE, COMM_BUFFER_OUT_CAN_TD_BROADCAST, (U08*)&tdVersionRecord, sizeof( TD_VERSIONS_T ) ); } return result;