interrupt-ref-cell 0.2.0

A `RefCell` for sharing data with interrupt handlers on the same thread.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "interrupt-ref-cell"
version = "0.2.0"
edition = "2024"
description = "A `RefCell` for sharing data with interrupt handlers on the same thread."
repository = "https://github.com/mkroening/interrupt-ref-cell"
license = "MIT OR Apache-2.0"
keywords = ["interrupts", "disable", "without"]
categories = ["no-std::no-alloc"]

[dependencies]
interrupts = "0.2"

[features]
# Make `InterruptRefCell` store additional debugging information, which is printed out when
# a borrow error occurs
debug_interruptrefcell = []