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

upload_extra_script.py 313B

123456789101112131415161718
  1. #
  2. # Set upload_command
  3. #
  4. # Windows: bossac.exe
  5. # Other: leave unchanged
  6. #
  7. import platform
  8. current_OS = platform.system()
  9. if current_OS == 'Windows':
  10. Import("env")
  11. # Use bossac.exe on Windows
  12. env.Replace(
  13. UPLOADCMD="bossac --info --unlock --write --verify --reset --erase -U false --boot $SOURCE"
  14. )