HomeSort by: relevance | last modified time | path
    Searched refs:nrpn (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/dev/
midictl.h 51 * midictl_nrpn_read(&mc, chan, nrpn, dflt)
52 * to read the current value of controller #ctlr, RP #rpn, or NRP #nrpn,
72 * RPN and NRPN space. It knows which controllers are 14-bit, 7-bit, or 1-bit
133 MIDICTL_NRPN = 3<<16, /* key=nrpn */
158 uint16_t nrpn; member in struct:__anona7dcc7c50208
171 * RPN, or NRPN value as appropriate. When updating a controller or RPN that
midictl.c 74 typedef enum { CTL1, CTL7, CTL14, RPN, NRPN } class;
160 [NRPN ] = 2
252 mc->nrpn &= ~PN_SET;
257 mc->nrpn &= ~PN_SET;
260 mc->nrpn &= ~0x7f;
261 mc->nrpn |= PN_SET | (0x7f & ctlval[1]);
265 mc->nrpn &= ~0x7fU<<7;
266 mc->nrpn |= PN_SET | (0x7f & ctlval[1])<<7;
275 if ( 0 == ( (mc->rpn ^ mc->nrpn) & PN_SET ) )
281 key = mc->nrpn;
    [all...]

Completed in 13 milliseconds