a5f7801d7b
The existing (default) timer driver for nRF implements one using the RTC, which uses the LFCLK. An additional feature has been provided where the HFCLK can be used for the timer driver by using TIMER1. An STM example has also been ported so that either driver implementation can be exercised. To use the HFCLK driver, simply use the `time-driver-timer1` feature in place of the `time-driver-rtc1` one when depending on embassy-nrf.
86 lines
3.3 KiB
TOML
86 lines
3.3 KiB
TOML
[package]
|
|
name = "embassy-nrf"
|
|
version = "0.1.0"
|
|
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
|
|
# Enable nightly-only features
|
|
nightly = ["embassy/nightly", "embedded-hal-1", "embedded-hal-async"]
|
|
|
|
# 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 = []
|
|
|
|
# Implement embedded-hal 1.0 alpha traits.
|
|
# Implement embedded-hal-async traits if `nightly` is set as well.
|
|
unstable-traits = ["embedded-hal-1"]
|
|
|
|
nrf52805 = ["nrf52805-pac", "_ppi"]
|
|
nrf52810 = ["nrf52810-pac", "_ppi"]
|
|
nrf52811 = ["nrf52811-pac", "_ppi"]
|
|
nrf52820 = ["nrf52820-pac", "_ppi"]
|
|
nrf52832 = ["nrf52832-pac", "_ppi"]
|
|
nrf52833 = ["nrf52833-pac", "_ppi", "_gpio-p1"]
|
|
nrf52840 = ["nrf52840-pac", "_ppi", "_gpio-p1"]
|
|
nrf5340-app-s = ["_nrf5340-app"]
|
|
nrf5340-app-ns = ["_nrf5340-app"]
|
|
nrf5340-net = ["_nrf5340-net"]
|
|
nrf9160-s = ["_nrf9160"]
|
|
nrf9160-ns = ["_nrf9160"]
|
|
|
|
gpiote = []
|
|
time-driver-rtc1 = ["_time-driver"]
|
|
time-driver-timer1 = ["_time-driver"]
|
|
|
|
# Features starting with `_` are for internal use only. They're not intended
|
|
# to be enabled by other crates, and are not covered by semver guarantees.
|
|
|
|
_nrf5340-app = ["_nrf5340", "nrf5340-app-pac"]
|
|
_nrf5340-net = ["_nrf5340", "nrf5340-net-pac"]
|
|
_nrf5340 = ["_gpio-p1", "_dppi"]
|
|
_nrf9160 = ["nrf9160-pac", "_dppi"]
|
|
|
|
_time-driver = ["embassy/time-tick-32768hz"]
|
|
|
|
_ppi = []
|
|
_dppi = []
|
|
_gpio-p1 = []
|
|
|
|
[dependencies]
|
|
embassy = { version = "0.1.0", path = "../embassy" }
|
|
embassy-macros = { version = "0.1.0", path = "../embassy-macros", features = ["nrf"]}
|
|
embassy-hal-common = {version = "0.1.0", path = "../embassy-hal-common" }
|
|
|
|
embedded-hal-02 = { package = "embedded-hal", version = "0.2.6", features = ["unproven"] }
|
|
embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.6", git = "https://github.com/embassy-rs/embedded-hal", branch = "embassy", optional = true}
|
|
embedded-hal-async = { version = "0.0.1", git = "https://github.com/embassy-rs/embedded-hal", branch = "embassy", optional = true}
|
|
|
|
defmt = { version = "0.3", optional = true }
|
|
log = { version = "0.4.14", optional = true }
|
|
cortex-m-rt = ">=0.6.15,<0.8"
|
|
cortex-m = "0.7.3"
|
|
embedded-dma = "0.1.2"
|
|
futures = { version = "0.3.17", default-features = false }
|
|
critical-section = "0.2.5"
|
|
rand_core = "0.6.3"
|
|
fixed = "1.10.0"
|
|
embedded-storage = "0.3.0"
|
|
cfg-if = "1.0.0"
|
|
nrf-usbd = {version = "0.1.1"}
|
|
usb-device = "0.2.8"
|
|
|
|
nrf52805-pac = { version = "0.11.0", optional = true, features = [ "rt" ] }
|
|
nrf52810-pac = { version = "0.11.0", optional = true, features = [ "rt" ] }
|
|
nrf52811-pac = { version = "0.11.0", optional = true, features = [ "rt" ] }
|
|
nrf52820-pac = { version = "0.11.0", optional = true, features = [ "rt" ] }
|
|
nrf52832-pac = { version = "0.11.0", optional = true, features = [ "rt" ] }
|
|
nrf52833-pac = { version = "0.11.0", optional = true, features = [ "rt" ] }
|
|
nrf52840-pac = { version = "0.11.0", optional = true, features = [ "rt" ] }
|
|
nrf5340-app-pac = { version = "0.11.0", optional = true, features = [ "rt" ] }
|
|
nrf5340-net-pac = { version = "0.11.0", optional = true, features = [ "rt" ] }
|
|
nrf9160-pac = { version = "0.11.0", optional = true, features = [ "rt" ] }
|