Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/SetOutputMask
- Timestamp:
- 03/12/25 07:57:54 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/SetOutputMask
v4 v5 2 2 Set the output states of one or more digital outputs to ON or OFF for the main board or a DIO option card. 3 3 4 {{{ 4 {{{#!c++ 5 5 int SetOutputMask(int bd, uint32 mask, uint32 output); 6 6 }}} … … 22 22 == Examples == 23 23 24 {{{ 24 {{{#!c++ 25 25 // Affect outputs 1 - 3 Mask = 1 + 2 + 4 = 7 26 26 if(SetOutputMask(MNBD_DEV, 7, 4) == OK) … … 28 28 }}} 29 29 30 {{{ 30 {{{#!c++ 31 31 // Affect outputs 1 - 4 Mask = 1 + 2 + 4 + 8 = 15 decimal = 0x0F hexadecimal 32 32 // Set 1 and 2 on = 1 + 2 = 3 … … 35 35 }}} 36 36 37 {{{ 37 {{{#!c++ 38 38 // Turn on outputs 1 and 3 39 39 SetOutputMask(MNBD_DEV, BitToMask(1) | BitToMask(3), ALL_MASK_BITS_ON); 40 40 }}} 41 41 42 {{{ 42 {{{#!c++ 43 43 // Turn off outputs 1 and 4 44 44 SetOutputMask(MNBD_DEV, BitToMask(1) | BitToMask(4), ALL_MASK_BITS_OFF); 45 45 }}} 46 46 47 {{{ 47 {{{#!c++ 48 48 // Turn on output 2 and turn off output 3 49 49 SetOutputMask(MNBD_DEV, BitToMask(2) | BitToMask(3), BitToMask(2));