aboutsummaryrefslogtreecommitdiff
path: root/embassy-mspm0/src/lib.rs
diff options
context:
space:
mode:
authori509VCB <[email protected]>2025-03-22 17:52:13 -0500
committeri509VCB <[email protected]>2025-03-29 00:21:29 -0500
commit91cde689cc0c771ffeb3864eb41e88104d476b47 (patch)
treedafaecbf60d85381bb16faee9d5bfdab90c82646 /embassy-mspm0/src/lib.rs
parent954d1554d4c04a245adadb5ebd97205d1442635e (diff)
mspm0: blocking uart driver
Diffstat (limited to 'embassy-mspm0/src/lib.rs')
-rw-r--r--embassy-mspm0/src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/embassy-mspm0/src/lib.rs b/embassy-mspm0/src/lib.rs
index 99b7ed4a1..e8f5971d5 100644
--- a/embassy-mspm0/src/lib.rs
+++ b/embassy-mspm0/src/lib.rs
@@ -5,8 +5,12 @@
5// This mod MUST go first, so that the others see its macros. 5// This mod MUST go first, so that the others see its macros.
6pub(crate) mod fmt; 6pub(crate) mod fmt;
7 7
8// This must be declared early as well for
9mod macros;
10
8pub mod gpio; 11pub mod gpio;
9pub mod timer; 12pub mod timer;
13pub mod uart;
10 14
11/// Operating modes for peripherals. 15/// Operating modes for peripherals.
12pub mod mode { 16pub mod mode {