| 170 | } |
| 171 | |
| 172 | void disableChannel(uint8 channel) { |
| 173 | assert(channel < NUM_VOICES); |
| 174 | _voice[channel].data = 0; |
| 175 | } |
| 176 | |
| 177 | void enableChannel(uint8 channel) { |
| 178 | assert(channel < NUM_VOICES); |
nothing calls this directly
no outgoing calls
no test coverage detected