all hals: reexport PAC if unstable-pac
feature is set.
This commit is contained in:
parent
6444066589
commit
f916fe5476
@ -5,6 +5,13 @@ authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
||||||
|
# Reexport the PAC for the currently enabled chip at `embassy_nrf::pac`.
|
||||||
|
# This is unstable because semver-minor (non-breaking) releases of embassy-nrf may major-bump (breaking) the PAC version.
|
||||||
|
# If this is an issue for you, you're encouraged to directly depend on a fixed version of the PAC.
|
||||||
|
# There are no plans to make this stable.
|
||||||
|
unstable-pac = []
|
||||||
|
|
||||||
defmt-trace = [ ]
|
defmt-trace = [ ]
|
||||||
defmt-debug = [ ]
|
defmt-debug = [ ]
|
||||||
defmt-info = [ ]
|
defmt-info = [ ]
|
||||||
|
@ -65,7 +65,11 @@ mod chip;
|
|||||||
#[path = "chips/nrf52840.rs"]
|
#[path = "chips/nrf52840.rs"]
|
||||||
mod chip;
|
mod chip;
|
||||||
|
|
||||||
|
#[cfg(feature = "unstable-pac")]
|
||||||
|
pub use chip::pac;
|
||||||
|
#[cfg(not(feature = "unstable-pac"))]
|
||||||
pub(crate) use chip::pac;
|
pub(crate) use chip::pac;
|
||||||
|
|
||||||
pub use chip::{peripherals, Peripherals};
|
pub use chip::{peripherals, Peripherals};
|
||||||
|
|
||||||
pub mod interrupt {
|
pub mod interrupt {
|
||||||
|
@ -5,6 +5,13 @@ authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
||||||
|
# Reexport the PAC for the currently enabled chip at `embassy_rp::pac`.
|
||||||
|
# This is unstable because semver-minor (non-breaking) releases of embassy-nrf may major-bump (breaking) the PAC version.
|
||||||
|
# If this is an issue for you, you're encouraged to directly depend on a fixed version of the PAC.
|
||||||
|
# There are no plans to make this stable.
|
||||||
|
unstable-pac = []
|
||||||
|
|
||||||
defmt-trace = [ ]
|
defmt-trace = [ ]
|
||||||
defmt-debug = [ ]
|
defmt-debug = [ ]
|
||||||
defmt-info = [ ]
|
defmt-info = [ ]
|
||||||
|
@ -5,7 +5,10 @@
|
|||||||
#![feature(never_type)]
|
#![feature(never_type)]
|
||||||
#![allow(incomplete_features)]
|
#![allow(incomplete_features)]
|
||||||
|
|
||||||
|
#[cfg(feature = "unstable-pac")]
|
||||||
pub use rp2040_pac2 as pac;
|
pub use rp2040_pac2 as pac;
|
||||||
|
#[cfg(not(feature = "unstable-pac"))]
|
||||||
|
pub(crate) use rp2040_pac2 as pac;
|
||||||
|
|
||||||
// This mod MUST go first, so that the others see its macros.
|
// This mod MUST go first, so that the others see its macros.
|
||||||
pub(crate) mod fmt;
|
pub(crate) mod fmt;
|
||||||
|
@ -43,6 +43,12 @@ defmt-error = [ ]
|
|||||||
sdmmc-rs = ["embedded-sdmmc"]
|
sdmmc-rs = ["embedded-sdmmc"]
|
||||||
net = ["embassy-net", "vcell"]
|
net = ["embassy-net", "vcell"]
|
||||||
|
|
||||||
|
# Reexport stm32-metapac at `embassy_stm32::pac`.
|
||||||
|
# This is unstable because semver-minor (non-breaking) releases of embassy-stm32 may major-bump (breaking) the stm32-metapac version.
|
||||||
|
# If this is an issue for you, you're encouraged to directly depend on a fixed version of the PAC.
|
||||||
|
# There are no plans to make this stable.
|
||||||
|
unstable-pac = []
|
||||||
|
|
||||||
# BEGIN GENERATED FEATURES
|
# BEGIN GENERATED FEATURES
|
||||||
# Generated by gen_features.py. DO NOT EDIT.
|
# Generated by gen_features.py. DO NOT EDIT.
|
||||||
stm32f030c6 = [ "stm32-metapac/stm32f030c6",]
|
stm32f030c6 = [ "stm32-metapac/stm32f030c6",]
|
||||||
|
@ -6,6 +6,9 @@
|
|||||||
#![feature(type_alias_impl_trait)]
|
#![feature(type_alias_impl_trait)]
|
||||||
#![allow(incomplete_features)]
|
#![allow(incomplete_features)]
|
||||||
|
|
||||||
|
#[cfg(feature = "unstable-pac")]
|
||||||
|
pub use stm32_metapac as pac;
|
||||||
|
#[cfg(not(feature = "unstable-pac"))]
|
||||||
pub(crate) use stm32_metapac as pac;
|
pub(crate) use stm32_metapac as pac;
|
||||||
|
|
||||||
// This must go FIRST so that all the other modules see its macros.
|
// This must go FIRST so that all the other modules see its macros.
|
||||||
|
Loading…
Reference in New Issue
Block a user