Compare View

switch
from
...
to
 
Commits (2)
app/gui/oven_control/define.h
... ... @@ -5,13 +5,14 @@
5 5  
6 6 #define MAJOR_VER 1
7 7 #define MINOR_VER 6
8   -#define HOTFIX_VER 3
  8 +#define HOTFIX_VER 5
9 9  
10 10 // 0 for normal
11 11 // 1 for premium
12 12 #define MODEL_GRADE 1
13 13  
14 14 #define ENABLE_WASH_RESUMING 0
  15 +#define WATER_LEVEL_HACCP_STAMP 1
15 16  
16 17 namespace Define
17 18 {
... ...
app/gui/oven_control/haccp.cpp
... ... @@ -664,8 +664,10 @@ void check()
664 664 if (oven->door() != lastDoor)
665 665 stamp();
666 666  
  667 +#if WATER_LEVEL_HACCP_STAMP
667 668 if (udp->waterLevel() != lastWaterLevel)
668 669 stamp();
  670 +#endif
669 671  
670 672 if (lastStampedTime.elapsed() > 30 * 1000 - 100)
671 673 stamp();
... ...