This repository has been archived on 2020-07-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
gitea-marlin2/Marlin-2.0.x-SKR-mini-E3-V2.0/buildroot/bin/pins_set
Xavier Perignon ba2f460a43 cleaning git
2020-06-15 14:24:57 +02:00

12 lines
328 B
Bash

#!/usr/bin/env bash
IFS='/' read -r -a PINPATH <<< "$1"
DIR=${PINPATH[0]}
NAM=${PINPATH[1]}
PIN=$2
VAL=$3
SED=$(which gsed || which sed)
eval "${SED} -i '/\(\/\/\)*\(#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)