Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/SetOutputMask


Ignore:
Timestamp:
03/12/25 07:57:54 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v4 v5  
    22Set the output states of one or more digital outputs to ON or OFF for the main board or a DIO option card.
    33
    4 {{{
     4{{{#!c++
    55int SetOutputMask(int bd, uint32 mask, uint32 output);
    66}}}
     
    2222== Examples ==
    2323
    24 {{{
     24{{{#!c++
    2525// Affect outputs 1 - 3 Mask = 1 + 2 + 4 = 7
    2626if(SetOutputMask(MNBD_DEV, 7, 4) == OK)
     
    2828}}}
    2929
    30 {{{
     30{{{#!c++
    3131// Affect outputs 1 - 4 Mask = 1 + 2 + 4 + 8 = 15 decimal = 0x0F hexadecimal
    3232// Set 1 and 2 on = 1 + 2 = 3
     
    3535}}}
    3636
    37 {{{
     37{{{#!c++
    3838// Turn on outputs 1 and 3
    3939SetOutputMask(MNBD_DEV, BitToMask(1) | BitToMask(3), ALL_MASK_BITS_ON);
    4040}}}
    4141
    42 {{{
     42{{{#!c++
    4343// Turn off outputs 1 and 4
    4444SetOutputMask(MNBD_DEV, BitToMask(1) | BitToMask(4), ALL_MASK_BITS_OFF);
    4545}}}
    4646
    47 {{{
     47{{{#!c++
    4848// Turn on output 2 and turn off output 3
    4949SetOutputMask(MNBD_DEV, BitToMask(2) | BitToMask(3), BitToMask(2));