| 220 | } |
| 221 | |
| 222 | int getMaxConnectedOutput() { |
| 223 | int maxChans = -1; |
| 224 | for (int c = 0; c < NUM_OUTPUTS; c++) { |
| 225 | if (outputs[OUT_01F_OUTPUT + c].isConnected()) { |
| 226 | maxChans = c; |
| 227 | } |
| 228 | } |
| 229 | return maxChans; |
| 230 | } |
| 231 | |
| 232 | json_t* dataToJson() override { |
| 233 | json_t* rootJ = json_object(); |
nothing calls this directly
no outgoing calls
no test coverage detected