2020-09-22 16:03:43 +00:00
|
|
|
[package]
|
|
|
|
name = "embassy-nrf"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[features]
|
2020-11-01 16:17:24 +00:00
|
|
|
defmt-trace = [ ]
|
|
|
|
defmt-debug = [ ]
|
|
|
|
defmt-info = [ ]
|
|
|
|
defmt-warn = [ ]
|
|
|
|
defmt-error = [ ]
|
2020-09-22 16:03:43 +00:00
|
|
|
|
2021-05-11 01:04:59 +00:00
|
|
|
nrf52805 = ["nrf52805-pac"]
|
|
|
|
nrf52810 = ["nrf52810-pac"]
|
|
|
|
nrf52811 = ["nrf52811-pac"]
|
|
|
|
nrf52820 = ["nrf52820-pac"]
|
|
|
|
nrf52832 = ["nrf52832-pac"]
|
|
|
|
nrf52833 = ["nrf52833-pac"]
|
|
|
|
nrf52840 = ["nrf52840-pac"]
|
2020-09-22 16:03:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2021-07-12 01:29:09 +00:00
|
|
|
embassy = { version = "0.1.0", path = "../embassy", features = ["time-tick-32768hz"] }
|
2021-03-27 22:27:39 +00:00
|
|
|
embassy-macros = { version = "0.1.0", path = "../embassy-macros", features = ["nrf"]}
|
2021-03-07 23:15:40 +00:00
|
|
|
embassy-extras = {version = "0.1.0", path = "../embassy-extras" }
|
2020-11-01 16:17:24 +00:00
|
|
|
|
2021-02-24 07:44:23 +00:00
|
|
|
defmt = { version = "0.2.0", optional = true }
|
2020-12-01 16:46:56 +00:00
|
|
|
log = { version = "0.4.11", optional = true }
|
2020-11-27 17:42:59 +00:00
|
|
|
cortex-m-rt = "0.6.13"
|
2021-02-14 22:26:50 +00:00
|
|
|
cortex-m = "0.7.1"
|
2020-09-22 16:03:43 +00:00
|
|
|
embedded-hal = { version = "0.2.4" }
|
2020-12-23 15:18:29 +00:00
|
|
|
embedded-dma = { version = "0.1.2" }
|
2021-02-28 21:05:37 +00:00
|
|
|
futures = { version = "0.3.5", default-features = false }
|
2021-05-11 01:04:59 +00:00
|
|
|
critical-section = "0.2.1"
|
2021-06-29 07:26:16 +00:00
|
|
|
rand_core = "0.6.3"
|
2020-09-22 16:03:43 +00:00
|
|
|
|
2021-06-15 20:25:37 +00:00
|
|
|
nrf52805-pac = { version = "0.1.0", optional = true, features = [ "rt" ]}
|
2021-03-28 22:42:08 +00:00
|
|
|
nrf52810-pac = { version = "0.9.0", optional = true, features = [ "rt" ]}
|
|
|
|
nrf52811-pac = { version = "0.9.1", optional = true, features = [ "rt" ]}
|
2021-06-15 20:25:37 +00:00
|
|
|
nrf52820-pac = { version = "0.1.0", optional = true, features = [ "rt" ]}
|
2021-03-28 22:42:08 +00:00
|
|
|
nrf52832-pac = { version = "0.9.0", optional = true, features = [ "rt" ]}
|
|
|
|
nrf52833-pac = { version = "0.9.0", optional = true, features = [ "rt" ]}
|
|
|
|
nrf52840-pac = { version = "0.9.0", optional = true, features = [ "rt" ]}
|