Esempio n. 1
0
def prepare(address, ldname, fwname):
    def encrypt(source, target, env):
        marlin.encrypt_mks(source, target, env, fwname)

    marlin.relocate_firmware(address)
    marlin.custom_ld_script(ldname)
    marlin.add_post_action(encrypt)
Esempio n. 2
0
def prepare(address, ldname, fwname):
    import pioutil
    if pioutil.is_pio_build():
        import marlin

        def encrypt(source, target, env):
            marlin.encrypt_mks(source, target, env, fwname)

        marlin.relocate_firmware(address)
        marlin.custom_ld_script(ldname)
        marlin.add_post_action(encrypt)
Esempio n. 3
0
#
# buildroot/share/PlatformIO/scripts/custom_board.py
#
import marlin
board = marlin.env.BoardConfig()

address = board.get("build.address", "")
if address:
	marlin.relocate_firmware(address)

ldscript = board.get("build.ldscript", "")
if ldscript:
	marlin.custom_ld_script(ldscript)
Esempio n. 4
0
    config.read("platformio.ini")

    #
    # Upload actions
    #
    def before_upload(source, target, env):
        env.Execute("pwd")

    def after_upload(source, target, env):
        env.Execute("pwd")

    env.AddPreAction("upload", before_upload)
    env.AddPostAction("upload", after_upload)

    flash_size = 0
    vect_tab_addr = 0

    for define in env['CPPDEFINES']:
        if define[0] == "VECT_TAB_ADDR":
            vect_tab_addr = define[1]
        if define[0] == "STM32_FLASH_SIZE":
            flash_size = define[1]

    print('Use the {0:s} address as the marlin app entry point.'.format(
        vect_tab_addr))
    print('Use the {0:d}KB flash version of stm32f103rct6 chip.'.format(
        flash_size))

    import marlin
    marlin.custom_ld_script("STM32F103RC_MEEB_3DP.ld")