| 235 | } |
| 236 | |
| 237 | int getChannelDmaCount(uint8 channel) { |
| 238 | assert(channel < NUM_VOICES); |
| 239 | return _voice[channel].dmaCount; |
| 240 | } |
| 241 | |
| 242 | void setChannelDmaCount(uint8 channel, int dmaVal = 0) { |
| 243 | assert(channel < NUM_VOICES); |
nothing calls this directly
no outgoing calls
no test coverage detected