| 8 | extern Driver py32ioexpander_driver; |
| 9 | |
| 10 | static error_t start() { |
| 11 | check(driver_construct_add(&py32ioexpander_driver) == ERROR_NONE); |
| 12 | return ERROR_NONE; |
| 13 | } |
| 14 | |
| 15 | static error_t stop() { |
| 16 | check(driver_remove_destruct(&py32ioexpander_driver) == ERROR_NONE); |
nothing calls this directly
no test coverage detected