| 113 | controller = this; |
| 114 | } |
| 115 | void PSXController::begin() { |
| 116 | gpio_set_irq_enabled_with_callback(m_ackPin, GPIO_IRQ_EDGE_RISE, true, &attentionInterrupt); |
| 117 | autoShiftData(commandPollInput, sizeof(commandPollInput)); |
| 118 | } |
| 119 | void PSXController::end() { |
| 120 | gpio_set_irq_enabled(m_ackPin, GPIO_IRQ_EDGE_RISE, false); |
| 121 | cancel_alarm(timeout_alarm_id); |
nothing calls this directly
no outgoing calls
no test coverage detected