Index: firmware/App/DDCommon.h =================================================================== diff -u -r9ab93eed5b08320e007eea02960aadae6a27d36a -r5b6999857da426eab66cbebb43e8a29f3b002882 --- firmware/App/DDCommon.h (.../DDCommon.h) (revision 9ab93eed5b08320e007eea02960aadae6a27d36a) +++ firmware/App/DDCommon.h (.../DDCommon.h) (revision 5b6999857da426eab66cbebb43e8a29f3b002882) @@ -25,7 +25,7 @@ #define DD_VERSION_MAJOR 0 #define DD_VERSION_MINOR 0 #define DD_VERSION_MICRO 0 -#define DD_VERSION_BUILD 56 +#define DD_VERSION_BUILD 77 // ********** development build switches ********** @@ -51,6 +51,9 @@ //Uncomment below for Maxon controller speed change #define __MAXON_SPEED_UPDATE__ 1 +//UnComment below for DryBicarb testing +//#define __DRY_BICARB__ 1 + //Uncomment below to disable heaters debug message #define __HEATERS_DEBUG__ 1 @@ -101,6 +104,20 @@ U32 compatibilityRev; ///< DD compatibility revision. } DD_VERSIONS_T; +/// Payload record structure for an FP versions message. +typedef struct +{ + U08 major; ///< FP version major revision. + U08 minor; ///< FP version minor revision. + U08 micro; ///< FP version micro revision. + U16 build; ///< FP build version. + U08 fpgaId; ///< FP FPGA ID. + U08 fpgaMajor; ///< FP FPGA major revision. + U08 fpgaMinor; ///< FP FPGA minor revision. + U08 fpgaLab; ///< FP FPGA lab revision. + U32 compatibilityRev; ///< FP compatibility revision. +} FP_VERSIONS_T; + /// Record defining the fields in a UI version request message. typedef struct {