From 76ae9e0e7cd398b1d26914374a0286438c2740ff Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Tue, 15 Jun 2021 22:25:37 +0200 Subject: [PATCH] nrf: use released nrf52805-pac, nrf52820-pac --- embassy-nrf/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml index 07524fa2d..eeba1f54e 100644 --- a/embassy-nrf/Cargo.toml +++ b/embassy-nrf/Cargo.toml @@ -34,10 +34,10 @@ embedded-dma = { version = "0.1.2" } futures = { version = "0.3.5", default-features = false } critical-section = "0.2.1" -nrf52805-pac = { version = "0.1.0", optional = true, features = [ "rt" ], git = "https://github.com/Dirbaio/nrf52805-pac"} +nrf52805-pac = { version = "0.1.0", optional = true, features = [ "rt" ]} nrf52810-pac = { version = "0.9.0", optional = true, features = [ "rt" ]} nrf52811-pac = { version = "0.9.1", optional = true, features = [ "rt" ]} -nrf52820-pac = { version = "0.1.0", optional = true, features = [ "rt" ], git = "https://github.com/Dirbaio/nrf52820-pac"} +nrf52820-pac = { version = "0.1.0", optional = true, features = [ "rt" ]} 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" ]}