| 322 | } |
| 323 | } |
| 324 | uint16_t MidiDevice::readMidiNote(uint8_t channel, uint8_t note) |
| 325 | { |
| 326 | return midiVelocities[channel][note] << 9; |
| 327 | } |
| 328 | uint16_t MidiDevice::readMidiControlChange(uint8_t channel, uint8_t cc) |
| 329 | { |
| 330 | return midiControlChanges[channel][cc] << 9; |
no outgoing calls
no test coverage detected