| 475 | namespace platforms { |
| 476 | |
| 477 | inline int attach_timer_handler(const isr_config_t& config, isr_handle_t* handle) FL_NOEXCEPT { |
| 478 | return stub_attach_timer_handler(config, handle); |
| 479 | } |
| 480 | |
| 481 | inline int attach_external_handler(u8 pin, const isr_config_t& config, isr_handle_t* handle) FL_NOEXCEPT { |
| 482 | return stub_attach_external_handler(pin, config, handle); |
nothing calls this directly
no test coverage detected