Hello,
I'm trying to upload a bootloader to my board with stm32loader.py found from this place, https://raw.github.com/leaflabs/libmaple/master/support/stm32loader.py. The instruction I 'm trying to follow is http://leaflabs.com/docs/bootloader.html.
My python is 3.2.3, pyserial is 2.6, when I run "python stm32loader.py -h" I got a syntax error from line 425 which is : "except getopt.GetoptError, err:"
To get it work, I have to change it to "except getopt.GetoptError as err:". Is this some different between older python and newer python? I hope.
Just for your information.
Cheers.