My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

opt_enable 522B

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