Skip to content

Commit

Permalink
🔨 Improve pins_set script
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Sep 21, 2021
1 parent 5b934e0 commit 58adb84
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions buildroot/bin/pins_set
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
IFS='/' read -r -a PINPATH <<< "$1"
DIR=${PINPATH[0]}
NAM=${PINPATH[1]}
PIN=$2
VAL=$3

SED=$(which gsed sed | head -n1)
eval "${SED} -i '/^[[:blank:]]*\(\/\/\)*[[:blank:]]*\(#define \+${PIN}\b\).*$/{s//\2 ${VAL}/;h};\${x;/./{x;q0};x;q9}' Marlin/src/pins/$DIR/pins_${NAM}.h" ||
(echo "ERROR: pins_set Can't find ${PIN}" >&2 && exit 9)

shift
while [[ $# > 1 ]]; do
PIN=$1 ; VAL=$2
eval "${SED} -i '/^[[:blank:]]*\(\/\/\)*[[:blank:]]*\(#define \+${PIN}\b\).*$/{s//\2 ${VAL}/;h};\${x;/./{x;q0};x;q9}' Marlin/src/pins/$DIR/pins_${NAM}.h" ||
(echo "ERROR: pins_set Can't find ${PIN}" >&2 && exit 9)
shift 2
done

0 comments on commit 58adb84

Please sign in to comment.