| 24 | u32 flags; // Platform-specific flags (see constants.h) |
| 25 | |
| 26 | config() FL_NOEXCEPT |
| 27 | : handler(nullptr) |
| 28 | , user_data(nullptr) |
| 29 | , frequency_hz(0) |
| 30 | , priority(ISR_PRIORITY_DEFAULT) |
| 31 | , flags(0) |
| 32 | {} |
| 33 | }; |
| 34 | |
| 35 | /// Opaque handle to an attached ISR. |
no outgoing calls