pagename = "stm32-env" pagedesc = "The STM32 Cross Environment" >>

The STM32 Cross Environment

Bazaar Branch
http://bzr.digital-scurf.org/trees/dsilvers/stm32-env/devel
Archive version
Bazaar (pack)
Software assumptions
bzr, Make

The STM32 Cross Environment is to allow you to build applications for the STM32 microcontroller range using a Linux hosted cross compiler. It may also work on Windows (Cygwin) although it is untested in that environment.

# Assuming you have bzr
$ mkdir -p /opt/cross/i386 /opt/cross/env
$ cd /opt/cross/env
$ bzr branch http://bzr.digital-scurf.org/trees/dsilvers/stm32-env/devel cortex-m3-stm32
$ cd ../i386
$ tar xfj /path/to/compiler-as-described-in-README.tar.bz2
$ mv arm-200*/* .
$ rmdir arm-200*
$ cd ../env/cortex-m3-stm32/examples/VirtualCOMPort
$ make
.... time passes while it builds ....
<<