Originally Posted by
newkirk
I've been working on advancing fbd some, and have successfully set up the method setMaskedOutput(low,high,lowmask,highmask). It works like setAllOutput(low,high) but uses the masks to only alter the outputs where '1' bits appear in the pertinent mask. So setMaskedOutput(255,255,128,127) would use low and high to set outputs 8-14 on, and leave 1-7 and 16 unchanged. It's not precisely what you're requesting, but can pretty easily be used to achieve it. Your example of turning off 8,9,10 can be achieved with "setMaskedOutput(0,0,128,3)".