Skip to content

Commit 8dab8b6

Browse files
authored
Merge pull request #56 from rust-embedded/ch-interrupts
Finished interrupts chapter
2 parents a8a16ac + f5d30f5 commit 8dab8b6

File tree

134 files changed

+1858
-187
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+1858
-187
lines changed

Cargo.toml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ members = [
44
"mdbook/src/03-setup",
55
"mdbook/src/05-meet-your-software",
66
"mdbook/src/06-hello-world",
7-
"mdbook/src/07-registers",
8-
"mdbook/src/08-led-roulette",
9-
"mdbook/src/10-uart",
10-
"mdbook/src/11-i2c",
11-
"mdbook/src/12-led-compass",
12-
"mdbook/src/13-punch-o-meter",
13-
"mdbook/src/14-snake-game",
7+
"mdbook/src/07-led-roulette",
8+
"mdbook/src/08-inputs-and-outputs",
9+
"mdbook/src/09-registers",
10+
"mdbook/src/11-uart",
11+
"mdbook/src/12-i2c",
12+
"mdbook/src/13-led-compass",
13+
"mdbook/src/14-punch-o-meter",
14+
"mdbook/src/15-interrupts",
15+
"mdbook/src/16-snake-game",
1416
"mdbook/src/appendix/3-mag-calibration",
1517
"mdbook/src/serial-setup",
1618
]

mdbook/src/05-meet-your-software/examples/delay-print.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#![no_std]
44

55
use cortex_m_rt::entry;
6-
use embedded_hal::delay::DelayNs;
76
use microbit::board::Board;
87
use microbit::hal::timer::Timer;
98
use panic_rtt_target as _;
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)