Mercurial > ~darius > hgwebdir.cgi > stm32temp
comparison README.txt @ 34:07589f738e5e
Update to reflect reality (ish)
author | Daniel O'Connor <darius@dons.net.au> |
---|---|
date | Mon, 11 Mar 2013 19:51:34 +1030 |
parents | 9404b9869c27 |
children | d2041a9051f9 |
comparison
equal
deleted
inserted
replaced
33:d3b7d4964807 | 34:07589f738e5e |
---|---|
3 Board is a http://ourstm.5d6d.com STM32 Strive mini with a touchscreen | 3 Board is a http://ourstm.5d6d.com STM32 Strive mini with a touchscreen |
4 LCD board which has a STM32F103VET (512k flash, 64k RAM). | 4 LCD board which has a STM32F103VET (512k flash, 64k RAM). |
5 | 5 |
6 Unfortunately the CD that came with it is in Chinese, this page has a review | 6 Unfortunately the CD that came with it is in Chinese, this page has a review |
7 http://www.deeplyembedded.net/index.php/categories/8-hardware-reviews/5-strive-mini-stm32?showall=&limitstart= | 7 http://www.deeplyembedded.net/index.php/categories/8-hardware-reviews/5-strive-mini-stm32?showall=&limitstart= |
8 | |
9 A working example from the CD is in | |
10 /Users/darius/projects/STM32Strive/奋斗STM32开发板例程/奋斗STM32开发板例程/奋斗STM32开发板V3/STM32奋斗版GIF动画例程/STM32奋斗版ucOS II V2.86 uCGUI 3.9 DEMO/ObjFlash/STM32-FD-ucgui.hex | |
11 | |
12 Which can be loaded by running... | |
13 /opt/local/bin/python ~/projects/blackmagic/scripts/hexprog.py -d /dev/cu.usbmodem7FC58901 '/Users/darius/projects/STM32Strive/奋斗STM32开发板例程/奋斗STM32开发板例程/奋斗STM32开发板V3/STM32奋斗版GIF动画例程/STM32奋斗版ucOS II V2.86 uCGUI 3.9 DEMO/ObjFlash/STM32-FD-ucgui.hex' | |
8 | 14 |
9 The RTC is powered by a CR1220 battery. | 15 The RTC is powered by a CR1220 battery. |
10 | 16 |
11 It has a SST25VF016B connected to SPI and a micro SD slot connected to | 17 It has a SST25VF016B connected to SPI and a micro SD slot connected to |
12 SDIO. | 18 SDIO. |
14 The LCD is driven by an ILI9325 connected in parallel 16 bit mode via | 20 The LCD is driven by an ILI9325 connected in parallel 16 bit mode via |
15 the FSMC controller with a TSC2046N on the SPI bus for touch. | 21 the FSMC controller with a TSC2046N on the SPI bus for touch. |
16 | 22 |
17 Toolchain | 23 Toolchain |
18 ========= | 24 ========= |
19 Created from https://github.com/MikeSmith/summon-arm-toolchain run | 25 Created from https://github.com/PX4/homebrew-px4 |
20 as.. | |
21 /summon-arm-toolchain DARWIN_OPT_PATH=/opt/local LIBSTM32_EN=1 LIBSTM32_EN=1 | |
22 | |
23 MacPorts tools did not work properly - it generated code which jumped | |
24 to 0x00 in random places. | |
25 | 26 |
26 Debug tool | 27 Debug tool |
27 ========== | 28 ========== |
28 mkdir /tmp/stlink | 29 Using a Blackmagic probe |
29 cp darwin/Info.plist /tmp/stlink | |
30 sudo chown -R root: /tmp/stlink | |
31 sudo kextload /tmp/stlink | |
32 | 30 |
33 ~/projects/stlink32/build/st-util 61234 /dev/dummy | |
34 |