MCPcopy Create free account
hub / github.com/FastLED/FastLED / null_attach_timer_handler

Function null_attach_timer_handler

src/platforms/isr_null.hpp:37–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35 */
36
37inline 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
45inline int null_attach_external_handler(u8 pin, const isr_config_t& config, isr_handle_t* out_handle) FL_NOEXCEPT {
46 (void)pin;

Callers 1

attach_timer_handlerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected