updated the comments in the main.c filei.

This commit is contained in:
jakeg00dwin 2024-07-02 15:35:10 -07:00
parent 90a27d93d3
commit fa1dd00965
1 changed files with 2 additions and 2 deletions

4
main.c
View File

@ -46,14 +46,14 @@ int main(int argc, char **argv)
TriacOut_PulsePins(GatePulses[i]); TriacOut_PulsePins(GatePulses[i]);
} }
//Thes G1-G3 pins are low at this point. //The G1-G3 pins are low at this point.
_delay_ms(2500); _delay_ms(2500);
ZCD_Poll(); ZCD_Poll();
TriacOut_SetupPins(); TriacOut_SetupPins();
TriacOut_SetAllHigh(); TriacOut_SetAllHigh();
Load_HandlePinLoads(void); Load_HandlePinLoads(void);
while(true){ while(true){
; //Do nothing until new Power/reset occurs ; //Do nothing until new Power cycle/reset occurs
} }
} }
} }