Fix build with all nrf chip models
This commit is contained in:
@ -12,11 +12,11 @@ defmt-info = []
|
||||
defmt-warn = []
|
||||
defmt-error = []
|
||||
|
||||
52810 = ["nrf52810-pac"]
|
||||
52811 = ["nrf52811-pac"]
|
||||
52832 = ["nrf52832-pac"]
|
||||
52833 = ["nrf52833-pac"]
|
||||
52840 = ["nrf52840-pac"]
|
||||
52810 = ["nrf52810-pac", "nrf52810-hal"]
|
||||
52811 = ["nrf52811-pac"] #, "nrf52811-hal"]
|
||||
52832 = ["nrf52832-pac", "nrf52832-hal"]
|
||||
52833 = ["nrf52833-pac", "nrf52833-hal"]
|
||||
52840 = ["nrf52840-pac", "nrf52840-hal"]
|
||||
|
||||
|
||||
[dependencies]
|
||||
@ -24,7 +24,6 @@ embassy = { version = "0.1.0", path = "../embassy" }
|
||||
cortex-m-rt = "0.6.12"
|
||||
cortex-m = { version = "0.6.3" }
|
||||
embedded-hal = { version = "0.2.4" }
|
||||
nrf52840-hal = { version = "0.11.0" }
|
||||
bare-metal = { version = "0.2.0", features = ["const-fn"] }
|
||||
defmt = "0.1.0"
|
||||
|
||||
@ -33,3 +32,9 @@ nrf52811-pac = { version = "0.9.0", optional = true }
|
||||
nrf52832-pac = { version = "0.9.0", optional = true }
|
||||
nrf52833-pac = { version = "0.9.0", optional = true }
|
||||
nrf52840-pac = { version = "0.9.0", optional = true }
|
||||
|
||||
nrf52810-hal = { version = "0.11.0", optional = true }
|
||||
#nrf52811-hal = { version = "0.11.0", optional = true } # doesn't exist yet
|
||||
nrf52832-hal = { version = "0.11.0", optional = true }
|
||||
nrf52833-hal = { version = "0.11.0", optional = true }
|
||||
nrf52840-hal = { version = "0.11.0", optional = true }
|
||||
|
Reference in New Issue
Block a user