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.

robin.py 329B

123456789101112
  1. #
  2. # buildroot/share/PlatformIO/scripts/robin.py
  3. #
  4. import marlin
  5. # Apply customizations for a MKS Robin
  6. def prepare(address, ldname, fwname):
  7. def encrypt(source, target, env):
  8. marlin.encrypt_mks(source, target, env, fwname)
  9. marlin.relocate_firmware(address)
  10. marlin.custom_ld_script(ldname)
  11. marlin.add_post_action(encrypt);