| 22 | } |
| 23 | |
| 24 | void attachInterruptArg(uint8_t pin, void (*callback)(void*, bool), void* arg, int mode) { |
| 25 | SoftwareGPIO::instance().attachISR(pin, callback, arg, mode); |
| 26 | } |
| 27 | |
| 28 | void detachInterrupt(uint8_t pin) { |
| 29 | SoftwareGPIO::instance().detachISR(pin); |
no test coverage detected