Index: firmware/App/Controllers/Valves.c =================================================================== diff -u -r2cc657d123c9e6db79ed62b02f088c72ccf9ff98 -rae36722cb762a069233685bb62a63107fd80338e --- firmware/App/Controllers/Valves.c (.../Valves.c) (revision 2cc657d123c9e6db79ed62b02f088c72ccf9ff98) +++ firmware/App/Controllers/Valves.c (.../Valves.c) (revision ae36722cb762a069233685bb62a63107fd80338e) @@ -41,15 +41,16 @@ #define DATA_PUBLISH_COUNTER_START_COUNT 50 ///< Data publish counter start count. /// Bits associated with RO valves when interfacing with FPGA to command a valve position. 1=energized, 0=de-energized. -static const U08 ValveBits[ NUM_OF_VALVES ] = { - 0x01, - 0x02, - 0x04, - 0x08, - 0x10, - 0x20, - 0x40, - 0x80 +static const U16 ValveBits[ NUM_OF_VALVES ] = { + 0x0001, + 0x0002, + 0x0004, + 0x0008, + 0x0010, + 0x0020, + 0x0040, + 0x0080, + 0x0100 }; // ********** private data **********