some fixes

This commit is contained in:
Robin Müller 2025-02-14 15:56:00 +01:00
parent fd3d71c7e7
commit a058b69169
Signed by: muellerr
GPG Key ID: A649FB78196E3849
2 changed files with 3 additions and 0 deletions

View File

@ -13,6 +13,7 @@ categories = ["embedded", "no-std", "hardware-support"]
[dependencies]
cortex-m = "0.7"
vcell = "0.1.3"
defmt = "0.3"
critical-section = { version = "1", optional = true }
[dependencies.cortex-m-rt]

View File

@ -3,6 +3,8 @@ svd2rust release can be generated by cloning the svd2rust [repository], checking
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![no_std]
// Manually inserted.
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
use core::marker::PhantomData;
use core::ops::Deref;
#[doc = r"Number available in the NVIC for configuring priority"]