My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pins_set 408B

123456789101112131415
  1. #!/usr/bin/env bash
  2. IFS='/' read -r -a PINPATH <<< "$1"
  3. DIR=${PINPATH[0]}
  4. NAM=${PINPATH[1]}
  5. SED=$(which gsed sed | head -n1)
  6. shift
  7. while [[ $# > 1 ]]; do
  8. PIN=$1 ; VAL=$2
  9. eval "${SED} -i '/^[[:blank:]]*\(\/\/\)*[[:blank:]]*\(#define \+${PIN}\b\).*$/{s//\2 ${VAL}/;h};\${x;/./{x;q0};x;q9}' Marlin/src/pins/$DIR/pins_${NAM}.h" ||
  10. (echo "ERROR: pins_set Can't find ${PIN}" >&2 && exit 9)
  11. shift 2
  12. done