Index: NVDataMgmt.c =================================================================== diff -u -r66600859e4fb3036f48901aae8c9845f37e3e707 -r50bec30dd7648c89eb3a46f148b84d368b53e858 --- NVDataMgmt.c (.../NVDataMgmt.c) (revision 66600859e4fb3036f48901aae8c9845f37e3e707) +++ NVDataMgmt.c (.../NVDataMgmt.c) (revision 50bec30dd7648c89eb3a46f148b84d368b53e858) @@ -1356,8 +1356,8 @@ BOOL setWaterConsumption ( U32 liters ) { BOOL status = FALSE; - dgUsageInfoGroup.dgUsageInfo.waterConsumption = liters; - dgUsageInfoGroup.crc = crc16 ( (U08*)&dgUsageInfoGroup.dgUsageInfo.waterConsumption, sizeof(U16) ); + dgUsageInfoGroup.dgUsageInfo.totalROwaterGeneratedL = liters; + dgUsageInfoGroup.crc = crc16 ( (U08*)&dgUsageInfoGroup.dgUsageInfo.totalROwaterGeneratedL, sizeof(U16) ); if ( !isQueueFull() ) { @@ -1378,7 +1378,7 @@ *************************************************************************/ U32 getWaterConsumption ( void ) { - return dgUsageInfoGroup.dgUsageInfo.waterConsumption; + return dgUsageInfoGroup.dgUsageInfo.totalROwaterGeneratedL; } /*********************************************************************//**