Index: firmware/App/Controllers/AirPump.c =================================================================== diff -u -r28741ce21fea6cf6bbcb59c691c56629e4d061b6 -r64d2b855d4021c416d7db207d89f61d92d14a32a --- firmware/App/Controllers/AirPump.c (.../AirPump.c) (revision 28741ce21fea6cf6bbcb59c691c56629e4d061b6) +++ firmware/App/Controllers/AirPump.c (.../AirPump.c) (revision 64d2b855d4021c416d7db207d89f61d92d14a32a) @@ -99,7 +99,8 @@ BOOL setAirPumpState( AIR_PUMP_STATE_T state, F32 power ) { BOOL result = FALSE; - //There is a limitation on the TD circuit to be able to run the pump at the low speed. change planned in next version of the board. right now limiting the pump duty cycle below 24% + // There is a limitation on the TD circuit to be able to run the pump at the low speed. + // Change planned in next version of the board. right now limiting the pump duty cycle below 24% //BOOL validInput = ( power == AIR_PUMP_DUTY_CYCLE_MIN) || ( power >= AIR_PUMP_DUTY_CYCLE_LIMIT && power <= AIR_PUMP_DUTY_CYCLE_MAX); BOOL validInput = ( ( ( power >= AIR_PUMP_DUTY_CYCLE_MIN ) && ( power <= AIR_PUMP_DUTY_CYCLE_MAX ) ) ) ? TRUE : FALSE;