Changes between Version 2 and Version 3 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/SetWIM


Ignore:
Timestamp:
10/20/10 13:36:44 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/SetWIM

    v2 v3  
    1515
    1616== Remarks ==
    17 This function allocates memory to accommodate the specified count of weight values.
     17This 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.
    1818
    1919== Example ==
     
    2424int nOnThres = 1000;
    2525int nOffThres = 800;
    26 SetWIM(1, nOnThres, nOffThres, 800);
     26int nNumWtsToBuffer = 1000;
     27SetWIM(1, nOnThres, nOffThres, nNumWtsToBuffer);
    2728
    2829SleepSeconds(1);