项目作者: pavelrevak

项目描述 :
STM32 MCU serial firmware loader (jet another stm32loader fw bootloader tool)
高级语言: Python
项目地址: git://github.com/pavelrevak/stm32bl.git
创建时间: 2016-06-04T20:46:07Z
项目社区:https://github.com/pavelrevak/stm32bl

开源协议:MIT License

下载


STM32BL

STM32 MCU serial firmware loader.

requirements

  • python - tested only with python3.x
  • py-serial - python library for serial port handling

supported MCUs

Probably all STM32xxxx
please report any problems

Examples:

  • test connection
    stm32loader -p /dev/tty.SLAB_USBtoUART

  • dump content of FLASH memory
    stm32loader -p /dev/tty.SLAB_USBtoUART -d

  • save content of FLASH memory
    stm32loader -p /dev/tty.SLAB_USBtoUART -r file.bin

  • write bin file to FLASH from selected address
    stm32loader -p /dev/tty.SLAB_USBtoUART -a 0x08003000 -w file.bin

  • mass erase, write bin file to FLASH, verify and execute application
    stm32loader -p /dev/tty.SLAB_USBtoUART -m -w file.bin -f -x

  • help
    stm32loader -h