Index: firmware/App/Monitors/Level.c =================================================================== diff -u -rb9a6c61d168d8aad9314f05b749645c73158b621 -re39cba3641902ed9c670f1ca7499f0b25b59bef1 --- firmware/App/Monitors/Level.c (.../Level.c) (revision b9a6c61d168d8aad9314f05b749645c73158b621) +++ firmware/App/Monitors/Level.c (.../Level.c) (revision e39cba3641902ed9c670f1ca7499f0b25b59bef1) @@ -70,7 +70,7 @@ static void publishLevelsData( void ); static BOOL processLevelCount( U16 count ); -static LEVEL_STATE_T readFloaterLevelstatus( LEVEL_T levelId ); +static LEVEL_STATE_T readFloaterLevelStatus( LEVEL_T levelId ); static LEVEL_STATE_T getLevelState( U32 levelStatus ); static LEVEL_STATE_T getLevelStateBeta19( U32 levelStatus ); static LEVEL_STATE_T getLevelStateBeta10( U32 levelStatus ); @@ -130,7 +130,7 @@ { // Process the status of the Level case D6_LEVL: - currentLevelStatus = readFloaterLevelstatus( D6_LEVL ); + currentLevelStatus = readFloaterLevelStatus( D6_LEVL ); break; case D63_LEVL: @@ -167,7 +167,7 @@ break; case P25_LEVL: - currentLevelStatus = readFloaterLevelstatus( P25_LEVL ); + currentLevelStatus = readFloaterLevelStatus( P25_LEVL ); break; #ifndef _VECTORCAST_ @@ -394,13 +394,13 @@ /*********************************************************************//** * @brief - * The getFloaterLevelstatus function gets the floater level reported by FPGA + * The getFloaterLevelStatus function gets the floater level reported by FPGA * @details \b Alarm: ALARM_ID_DD_SOFTWARE_FAULT if the current state is invalid. * @details \b Inputs: FPGA level sensor data * @details \b Outputs: level * @return level status *************************************************************************/ -static LEVEL_STATE_T readFloaterLevelstatus( LEVEL_T levelId ) +static LEVEL_STATE_T readFloaterLevelStatus( LEVEL_T levelId ) { LEVEL_STATE_T currentLevelStatus = LEVEL_STATE_HIGH; U32 levelStatus = 0;