Index: DGDefs.h =================================================================== diff -u -r1ea146115c041879f1ef9b07013fa5c550eff68c -rc14a9f333a93e3add3003fa3c566edc321e27d04 --- DGDefs.h (.../DGDefs.h) (revision 1ea146115c041879f1ef9b07013fa5c550eff68c) +++ DGDefs.h (.../DGDefs.h) (revision c14a9f333a93e3add3003fa3c566edc321e27d04) @@ -263,13 +263,14 @@ /// Enumeration of available DG commands. enum DG_Command { - DG_CMD_SWITCH_RESERVOIR = 0, ///< Command to request DG switch reservoirs - DG_CMD_START_DRAIN = 1, ///< Command to request DG to start drain - DG_CMD_STOP_DRAIN = 2, ///< Command to request DG to stop drain - DG_CMD_START_FILL = 3, ///< Command to request DG to start fill - DG_CMD_STOP_FILL = 4, ///< Command to request DG to stop fill - DG_CMD_START_TRIMMER_HEATER = 5, ///< Command to request DG to start trimmer heater - DG_CMD_STOP_TRIMMER_HEATER = 6, ///< Command to request DG to stop trimmer heater + DG_CMD_NONE = 0, ///< Not a command + DG_CMD_SWITCH_RESERVOIR = 1, ///< Command to request DG switch reservoirs + DG_CMD_START_DRAIN = 2, ///< Command to request DG to start drain + DG_CMD_STOP_DRAIN = 3, ///< Command to request DG to stop drain + DG_CMD_START_FILL = 4, ///< Command to request DG to start fill + DG_CMD_STOP_FILL = 5, ///< Command to request DG to stop fill + DG_CMD_START_TRIMMER_HEATER = 6, ///< Command to request DG to start trimmer heater + DG_CMD_STOP_TRIMMER_HEATER = 7, ///< Command to request DG to stop trimmer heater NUM_OF_DG_COMMANDS ///< Number of DG commands }; typedef enum DG_Command DG_COMMAND_T; ///< Type for DG commands enumeration