My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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()