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.

opt_set 673B

12345678910111213141516
  1. #!/usr/bin/env bash
  2. # exit on first failure
  3. set -e
  4. SED=$(which gsed || which sed)
  5. ARGC=$#
  6. while [[ $# > 1 ]]; do
  7. # Logic for returning nonzero based on answer here: https://stackoverflow.com/a/15966279/104648
  8. eval "${SED} -i '/^\([[:blank:]]*\)\(\/\/\)*\([[:blank:]]*\)\(#define\s\+\b${1}\b\).*$/{s//\1\3\4 ${2}/;h};\${x;/./{x;q0};x;q9}' Marlin/Configuration.h" ||
  9. eval "${SED} -i '/^\([[:blank:]]*\)\(\/\/\)*\([[:blank:]]*\)\(#define\s\+\b${1}\b\).*$/{s//\1\3\4 ${2}/;h};\${x;/./{x;q0};x;q9}' Marlin/Configuration_adv.h" ||
  10. eval "echo '#define ${1} ${2}' >>Marlin/Configuration.h" ||
  11. (echo "ERROR: opt_set Can't set or add ${1}" >&2 && exit 9)
  12. shift 2
  13. done