Changes between Version 10 and Version 11 of Docs/Prog/Manual/DeviceSupport/Weighing


Ignore:
Timestamp:
10/20/10 14:47:53 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/DeviceSupport/Weighing

    v10 v11  
    9696int main ()
    9797{
    98         int i, x, stat, n = 0;
     98        int i, x, stat, nSamplesPerSecond = 0;
    9999        struct timespec delaytm;
    100100        char szMsg[41];
     
    163163                        {
    164164                                printf("%d %.3f %.3f\r\n", i, *(float*)&pwim[i], *(float*)&pwim[i+1]);
    165                                 n++;
     165                                nSamplesPerSecond++;
    166166                        }
    167167                        sprintf(szMsg, "%10.3f %10.3f", *(float*)&pwim[x - 2], *(float*)&pwim[x - 1]);
     
    176176                        {
    177177                                LocateLCD(FONT_WIDTH * 30,0);
    178                                 sprintf(szMsg, "%02d %4d", tmnow->tm_sec, n);
     178                                sprintf(szMsg, "%02d %4d", tmnow->tm_sec, nSamplesPerSecond);
    179179                                PrintLCD(szMsg);
    180180                               
    181181                                prev_sec = tmnow->tm_sec;
    182                                 n = 0;
     182                                nSamplesPerSecond = 0;
    183183                        }
    184184                }