| 35 | */ |
| 36 | |
| 37 | inline int null_attach_timer_handler(const isr_config_t& config, isr_handle_t* out_handle) FL_NOEXCEPT { |
| 38 | (void)config; |
| 39 | if (out_handle) { |
| 40 | *out_handle = isr_handle_t(); // Invalid handle |
| 41 | } |
| 42 | return ERR_NOT_IMPLEMENTED; // Not implemented error |
| 43 | } |
| 44 | |
| 45 | inline int null_attach_external_handler(u8 pin, const isr_config_t& config, isr_handle_t* out_handle) FL_NOEXCEPT { |
| 46 | (void)pin; |
no outgoing calls
no test coverage detected