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 240B

12345678910
  1. #!/usr/bin/env bash
  2. IFS='/' read -r -a PINPATH <<< "$1"
  3. DIR=${PINPATH[0]}
  4. NAM=${PINPATH[1]}
  5. PIN=$2
  6. VAL=$3
  7. SED=$(which gsed || which sed)
  8. eval "${SED} -E -i 's/(\/\/)?(#define +${PIN}\b).*$/\2 ${VAL}/g' Marlin/src/pins/$DIR/pins_${NAM}.h"