diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2019-10-24 09:12:58 +0300 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2019-10-24 09:12:58 +0300 |
| commit | 5105f5876ed8bf967de5cf22c0cdbfeda1cb3fbd (patch) | |
| tree | bcab0a4babcd80cd9731831adb0940922d12c9c3 /Software/Embedded_SW/Embedded/Modules | |
| parent | 70e34c217a9e479922d2ebf1ac9f1cbe6d0877a0 (diff) | |
| download | Tango-5105f5876ed8bf967de5cf22c0cdbfeda1cb3fbd.tar.gz Tango-5105f5876ed8bf967de5cf22c0cdbfeda1cb3fbd.zip | |
fix pressure problem. investigate file system
Diffstat (limited to 'Software/Embedded_SW/Embedded/Modules')
| -rw-r--r-- | Software/Embedded_SW/Embedded/Modules/Control/control.c | 2 | ||||
| -rw-r--r-- | Software/Embedded_SW/Embedded/Modules/IDS/IDS_print.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Software/Embedded_SW/Embedded/Modules/Control/control.c b/Software/Embedded_SW/Embedded/Modules/Control/control.c index d4fbcdca2..80afb7ac6 100644 --- a/Software/Embedded_SW/Embedded/Modules/Control/control.c +++ b/Software/Embedded_SW/Embedded/Modules/Control/control.c @@ -300,7 +300,7 @@ void ControlStart(void) ADCAcquireStart(0,1); AddControlCallback( ControlEmptyCBFunction, eHundredMillisecond, ControlActivityLed,0, 0, 0 ); - Task_sleep(100); + SysCtlDelay(12000000); MillisecStart(); } } diff --git a/Software/Embedded_SW/Embedded/Modules/IDS/IDS_print.c b/Software/Embedded_SW/Embedded/Modules/IDS/IDS_print.c index 7eeea6579..c42014556 100644 --- a/Software/Embedded_SW/Embedded/Modules/IDS/IDS_print.c +++ b/Software/Embedded_SW/Embedded/Modules/IDS/IDS_print.c @@ -659,7 +659,7 @@ c. Go to step 2.a x Segment.BrushStopsCount. //JobTicket* JobTicket = JobDetails; - if (feedertension>0.1) + if ((feedertension>0.1)&&(feedertension<1.5)) { Report("Setting pressure from RML feeder tension",__FILE__,__LINE__,(int)(feedertension*100),RpWarning,(int)(DispenserPreparePressure*100),0); DispenserPreparePressure = feedertension; |
