Browse Source

Correct upload script for detection of F1/F4 start address.

pull/15/head
Gareth McMullin 12 years ago
parent
commit
530ee15153
  1. 2
      scripts/stm32_mem.py

2
scripts/stm32_mem.py

@ -108,7 +108,7 @@ if __name__ == "__main__":
bin = open(args.progfile, "rb").read()
if product.find("F4") :
if "F4" in product:
addr = 0x8004000
else:
addr = 0x8002000

Loading…
Cancel
Save