Changes between Version 2 and Version 3 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/GetInputMask
- Timestamp:
- 03/12/25 07:59:31 (4 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/GetInputMask
v2 v3 2 2 Determine if any of one or more inputs for the main board or a DIO option card is on. 3 3 4 {{{ 4 {{{#!c++ 5 5 bool GetInputMask(int bd, uint32 mask); 6 6 }}} … … 21 21 == Examples == 22 22 23 {{{ 23 {{{#!c++ 24 24 // Inputs 1 - 2 = mask 1 + 2 = 3 25 25 if(GetInputMask(MNBD_DEV, 3) == true) … … 27 27 }}} 28 28 29 {{{ 29 {{{#!c++ 30 30 // inputs 2 - 3 = mask 2 + 4 = 6 31 31 if(GetInputMask(1, 6) == false)