Commit fb200c9f180cedd5a581f8ff43de279d605639fe
1 parent
6a965b9f18
Exists in
master
and in
2 other branches
머지 후 컴파일 오류 수정
Showing
2 changed files
with
2 additions
and
3 deletions
Show diff stats
app/gui/oven_control/historylistwindow.cpp
app/gui/oven_control/ovenstatics.cpp
... | ... | @@ -88,13 +88,13 @@ void OvenStatics::onDataChanged() |
88 | 88 | } |
89 | 89 | curSysErrorState = state.system_error; |
90 | 90 | |
91 | - errstatetemp = state.reserved2f; | |
91 | + errstatetemp = state.communication_error; | |
92 | 92 | if(errstatetemp!=0 && errstatetemp != curCommErrorState ){ |
93 | 93 | processCommError( errstatetemp,ltime ); |
94 | 94 | } |
95 | 95 | curCommErrorState = errstatetemp; |
96 | 96 | |
97 | - errstatetemp = state.reserved30; | |
97 | + errstatetemp = state.sensor_error; | |
98 | 98 | if(errstatetemp!=0 && errstatetemp != curSensorErrorState ){ |
99 | 99 | processCommError( errstatetemp,ltime ); |
100 | 100 | } | ... | ... |