Changes between Version 23 and Version 24 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/StartRepeatMulti


Ignore:
Timestamp:
03/12/25 07:22:27 (4 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v23 v24  
    22Start repeating communications from main board to report weights, I/O status, COM3, COM4 and optionally input counters.
    33
    4 {{{
     4{{{#!c++
    55int StartRepeatMulti(uint32 interval, struct mnbd_multi_rep_counters_struct& counters);
    66}}}
    77
    8 {{{
     8{{{#!c++
    99int StartRepeatMulti(uint32 interval, struct mnbd_multi_rep_counters_struct* counters = NULL);
    1010}}}
     
    3030== Examples ==
    3131
    32 {{{
     32{{{#!c++
    3333if(StartRepeatMulti(100) == OK)
    3434    DisplayText(0, 0, "Wt and I/O 10 times per second");
    3535}}}
    3636
    37 {{{
     37{{{#!c++
    3838int bd = 1;
    3939int inp = 8;
     
    5959Example of reading counter data:
    6060
    61 {{{
     61{{{#!c++
    6262
    6363int g_nPrevCnt[4] = { 0, 0, 0, 0 }
     
    9090
    9191repeatmulti.h:
    92 {{{
     92{{{#!c++
    9393#ifndef REPEATMULTI_H_
    9494#define REPEATMULTI_H_