Index
- Eclipse IDE and JTAG
- Unlock STM32F103 with JTAG
- Flash firmware using Bluetooth
- Serial Port Bluetooth
- Serial Port Plot
- SM32F103C8T6 use 128kbytes flash
- Observer
- Shane Colton documentation and firmware
- Firmware
- Part 1: Field-Oriented
- Part 2: Field-Oriented
- Sensorless Pneu Scooter - part 1
- Sensorless Pneu Scooter - part 2
- Sensorless Pneu Scooter - part 3
- Texas Instruments videos
- Chinese controllers code
- Chinese balance group reference design
- Kerry D. Wong -- A Self-Balancing Robot
- Self balance bicycle
- PID
- LQR
- PID and LQR, MATLAB
- Steve Brunton videos
SM32F103C8T6 use 128kbytes flash
On Tue, Feb 05, 2013 at 04:42:53PM +0000, gerrit@... wrote:> It has been seen on some stm32 targets that the flash size register that
> is probed by the driver may contain an invalid size.
Not only that, I've been told at ##stm32 that all of the STM32F103C8T6
(e.g. as found on ST-Links) have 128K flash instead of 64K. So it's
technically valid but limited for marketing reasons at least on some
chips, here's when this change will come useful too :)
---
Error when trying to flash a file over 64kbytes:
After changing this line on the STM32Fxx OpenOCD script file: flash bank $_FLASHNAME stm32f1x 0x0800000 0 0 0 $_TARGETNAME
to: flash bank $_FLASHNAME stm32f1x 0 0x20000 0 0 $_TARGETNAME
Now flashing file over 64kbytes!!! And it works :-)