Changes between Version 2 and Version 3 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/SetWIM
- Timestamp:
- 10/20/10 13:36:44 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/SetWIM
v2 v3 15 15 16 16 == Remarks == 17 This function allocates memory to accommodate the specified count of weight values. 17 This function allocates memory to accommodate the specified count of weight values. When the gross weight exceeds the on threshold the buffering begins. Integer gross weights are recorded into the buffer. When the gross weight drops below the off threshold the buffering stops. This allows the application to process many gross weights in an array for high speed. 18 18 19 19 == Example == … … 24 24 int nOnThres = 1000; 25 25 int nOffThres = 800; 26 SetWIM(1, nOnThres, nOffThres, 800); 26 int nNumWtsToBuffer = 1000; 27 SetWIM(1, nOnThres, nOffThres, nNumWtsToBuffer); 27 28 28 29 SleepSeconds(1);