Commit b67520704bac497f07d957a2926da93776a65e27

Authored by 고영탁
1 parent 2c746c43f2
Exists in fhd

재세척 생략 버전 2.0.05 릴리즈

app/gui/oven_control/define.h
... ... @@ -5,13 +5,14 @@
5 5  
6 6 #define MAJOR_VER 2
7 7 #define MINOR_VER 0
8   -#define HOTFIX_VER 4
  8 +#define HOTFIX_VER 5
9 9  
10 10 // 0 for normal
11 11 // 1 for premium
12   -#define MODEL_GRADE 0
  12 +#define MODEL_GRADE 1
13 13  
14 14 #define ENABLE_WASH_RESUMING 0
  15 +#define WATER_LEVEL_HACCP_STAMP 0
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();
... ...