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

pioutil.py 304B

12345678910111213
  1. #
  2. # pioutil.py
  3. #
  4. # Make sure 'vscode init' is not the current command
  5. def is_pio_build():
  6. from SCons.Script import DefaultEnvironment
  7. env = DefaultEnvironment()
  8. return not env.IsIntegrationDump()
  9. def get_pio_version():
  10. from platformio import util
  11. return util.pioversion_to_intstr()