From 28f71302918a8ab583884fdf56b464a087a04aec Mon Sep 17 00:00:00 2001 From: datdenkikniet Date: Mon, 1 May 2023 14:44:51 +0200 Subject: [PATCH] Clean up the steps --- run-steps.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/run-steps.sh b/run-steps.sh index 7e077bf..b9ca746 100755 --- a/run-steps.sh +++ b/run-steps.sh @@ -1,6 +1,6 @@ #!/bin/sh -set -ex +set -e project="test-app" @@ -35,10 +35,10 @@ cd "$project" echo "Performing steps" sd -s -- '--chip $CHIP' '--chip nRF52840_xxAA' .cargo/config.toml -sd -s '# target = "thumbv7em-none-eabihf" # Cortex-M4F and Cortex-M7F (with FPU)' 'target = "thumbv7em-none-eabihf"' .cargo/config.toml +sd -s '# target = "thumbv7em-none-eabihf"' 'target = "thumbv7em-none-eabihf"' .cargo/config.toml sd -s '$RTIC_BACKEND' 'thumbv7-backend' Cargo.toml sd -s '# some-hal = "1.2.3"' 'nrf52840-hal = "0.16.0"' Cargo.toml -sd -s '// use some_hal as _; // memory layout' 'use nrf52840_hal as _;' src/lib.rs +sd -s '// use some_hal as _;' 'use nrf52840_hal as _;' src/lib.rs sd -s 'some_hal::pac' 'nrf52840_hal::pac' src/bin/minimal.rs sd -s 'FreeInterrupt1, ...' 'SWI0_EGU0' src/bin/minimal.rs