diff options
Diffstat (limited to 'Software/Embedded_SW/Embedded/Modules/Control/control.c')
| -rw-r--r-- | Software/Embedded_SW/Embedded/Modules/Control/control.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Software/Embedded_SW/Embedded/Modules/Control/control.c b/Software/Embedded_SW/Embedded/Modules/Control/control.c index a35b804e4..37b3ff943 100644 --- a/Software/Embedded_SW/Embedded/Modules/Control/control.c +++ b/Software/Embedded_SW/Embedded/Modules/Control/control.c @@ -364,12 +364,12 @@ uint32_t ControlLowLoop(uint32_t tick) //test dancers and speed encoders //check all callback units (state machine waiting for completion of a change) //uint32_t Device_i; - bool Ten_msTick, Hundred_msTick, Onesecond_Tick,Tick98,Tick998; - Ten_msTick = (tick%eTenMillisecond == 0) ?true:false; - Hundred_msTick = (tick%eHundredMillisecond == 0) ?true:false; - Onesecond_Tick = (tick%eOneSecond == 0) ?true:false; - Tick98 = (tick%eHundredMillisecond == 98) ?true:false; - Tick998 = (tick%eOneSecond == 996) ?true:false; + //bool Ten_msTick, Hundred_msTick, Onesecond_Tick,Tick98,Tick998; + //Ten_msTick = (tick%eTenMillisecond == 0) ?true:false; + //Hundred_msTick = (tick%eHundredMillisecond == 0) ?true:false; + //Onesecond_Tick = (tick%eOneSecond == 0) ?true:false; + //Tick98 = (tick%eHundredMillisecond == 98) ?true:false; + //Tick998 = (tick%eOneSecond == 996) ?true:false; //ROM_IntMasterDisable(); for (ControlLowDevice_i = 0; ControlLowDevice_i < MAX_TANGO_CONTROL_DEVICES;ControlLowDevice_i++) |
