From 5b8c18dad321785ce23e376e58af31e46e0dc27e Mon Sep 17 00:00:00 2001 From: Vadim Kaushan Date: Sun, 14 Mar 2021 23:17:45 +0300 Subject: [PATCH 1/2] Fix probe-run install command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3cf1b61f..29c4a221 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ GPIO pins are set up for the `nrf52840-dk` board (PCA10056) - Install `probe-run` with defmt support. ``` -cargo install --git https://github.com/knurling-rs/probe-run --branch main --features defmt +cargo install probe-run ``` - Run the example From 385895767c7d5f5c270081c5af2a0e49219a28bc Mon Sep 17 00:00:00 2001 From: Vadim Kaushan Date: Sun, 14 Mar 2021 23:18:09 +0300 Subject: [PATCH 2/2] Fix exti driver --- embassy-stm32f4/src/exti.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embassy-stm32f4/src/exti.rs b/embassy-stm32f4/src/exti.rs index 52cf5a29..932f29b9 100644 --- a/embassy-stm32f4/src/exti.rs +++ b/embassy-stm32f4/src/exti.rs @@ -482,7 +482,7 @@ exti!(gpioj, [ feature = "stm32f469", feature = "stm32f479" ))] -exti!(gpioj, [ +exti!(gpiok, [ EXTI0 => PK0, EXTI1 => PK1, EXTI2 => PK2,