| 345 | |
| 346 | |
| 347 | static void Port_setDisconnected(Port* that) { |
| 348 | that->channels = 0; |
| 349 | for (int c = 0; c < PORT_MAX_CHANNELS; c++) { |
| 350 | that->voltages[c] = 0.f; |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | |
| 355 | static void Port_setConnected(Port* that) { |
no outgoing calls
no test coverage detected