aboutsummaryrefslogtreecommitdiffstats
path: root/src/handler.rs
Commit message (Collapse)AuthorAgeFilesLines
* WIP: Add `const-fn` feature to attempt support for stable toolchain.Brian Cully2019-07-291-9/+40
| | | | | To get this to work, either `FnMut` traits need to be allowed in `const fn` in stable, or `Handler::new` needs to be non-`const`.
* Update to 0.2.0: Add HandlerArray type.v0.2.0Brian Cully2019-06-031-0/+185
* Create HandlerArray as a safe wrapper around Handler. * Add Cargo features for HandlerArray size. * Move Handler into sub-module. * Add CriticalSection sub-module for architecture dependent support of interrupt-free contexts. * Add build rules to pull in cortex-m support for CriticalSection automatically.