Changes between Version 3 and Version 4 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/SetOutputMask
- Timestamp:
- 09/10/18 10:57:01 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/SetOutputMask
v3 v4 35 35 }}} 36 36 37 {{{ 38 // Turn on outputs 1 and 3 39 SetOutputMask(MNBD_DEV, BitToMask(1) | BitToMask(3), ALL_MASK_BITS_ON); 40 }}} 41 42 {{{ 43 // Turn off outputs 1 and 4 44 SetOutputMask(MNBD_DEV, BitToMask(1) | BitToMask(4), ALL_MASK_BITS_OFF); 45 }}} 46 47 {{{ 48 // Turn on output 2 and turn off output 3 49 SetOutputMask(MNBD_DEV, BitToMask(2) | BitToMask(3), BitToMask(2)); 50 }}} 51 37 52 38 53 == See Also ==