Changes between Version 2 and Version 3 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/GetInputMask


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

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/GetInputMask

    v2 v3  
    22Determine if any of one or more inputs for the main board or a DIO option card is on.
    33
    4 {{{
     4{{{#!c++
    55bool GetInputMask(int bd, uint32 mask);
    66}}}
     
    2121== Examples ==
    2222
    23 {{{
     23{{{#!c++
    2424// Inputs 1 - 2 = mask 1 + 2 = 3
    2525if(GetInputMask(MNBD_DEV, 3) == true)
     
    2727}}}
    2828
    29 {{{
     29{{{#!c++
    3030// inputs 2 - 3  =   mask 2 + 4 = 6
    3131if(GetInputMask(1, 6) == false)