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.

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