Compare commits

1 Commits

Author SHA1 Message Date
b05a45e859 thats the crash 2022-10-14 04:49:35 +02:00

3
main.c
View File

@@ -59,6 +59,8 @@ int main()
ioHelperDebounce(); ioHelperDebounce();
ioHelperEdgeDetector(); ioHelperEdgeDetector();
modbusGet();
if(millis() - timer_blink_outs > 500){ if(millis() - timer_blink_outs > 500){
outStates[0] ^= outStatesBlinking[0]; outStates[0] ^= outStatesBlinking[0];
outStates[1] ^= outStatesBlinking[1]; outStates[1] ^= outStatesBlinking[1];
@@ -69,7 +71,6 @@ int main()
ioHelperSetOuts(); ioHelperSetOuts();
modbusGet();
} }
} }