A pure-C baseline ARM Cortex-M microcontroller development framework
Go to file
Solomon Peachy f0b846c40a build: Explicitly set -mfloat-abi=soft for all non-FPU targets. 2020-01-01 22:34:58 -05:00
crosstool-ng bump toolchain configs 2016-07-12 21:08:02 -04:00
inc stm32f4xx: Significant rework of STM32F4 startup code. 2013-12-19 15:50:51 -05:00
libs build: Explicitly set -mfloat-abi=soft for all non-FPU targets. 2020-01-01 22:34:58 -05:00
src printf: Partially implement floating point support. 2019-12-31 00:08:58 -05:00
.gitattributes stm32: Add CMSIS/STD Libraries for: 2013-08-03 08:48:31 -04:00
.gitignore More stm32f4 build fixes. 2015-07-25 10:13:57 -04:00
BUILD Further updates for C++ support. 2019-11-29 19:29:16 -05:00
LICENSE Further updates for C++ support. 2019-11-29 19:29:16 -05:00
Makefile Further updates for C++ support. 2019-11-29 19:29:16 -05:00
Makefile.opts.sample Nuke support for stm32w family (EOL'd in 2017 by ST) 2019-12-15 00:25:02 -05:00
README Further updates for C++ support. 2019-11-29 19:29:16 -05:00
git-version-gen scripts: Update git-version-gen to be more useful. 2013-08-04 08:55:54 -04:00

README

This project provides the base/skeleton necessary to develop 
C/C++ applications targeting ARM Cortex-M microcontrollers.

Based on the MCU selected, it automagically compiles the toolchain, 
support/peripheral support libraries, startup code, and an empty main() 
function.  Everything, even the toolchain, is supplied in pure source 
form.

Current hardware supported:  (As of mid-2016..)

  * Entire STM32 family (except for T1)
  * Entire EFM32 family (except for ZG)
  * Atmel SAM D20 family (will eventially add SAM3/SAM4)

Additonal MCUs from different manufacturers will be added as opportunity 
arises. In theory, any Cortex-M-based processor with a functional CMSIS 
port can easily be supported.

Down the line, I'd like to expand the scope of this project to include:

 * Considerably better documentation (including prerequisites for builds)
 * Running purely out of RAM
 * OpenOCD-based debugging
 * Flash image cooking/generation/uploading

I built this framework for my own personal (and professional) needs, and 
I'm releasing it into the wild in the hope that others may find it 
useful. If you find this useful, please drop me a line to encourage me 
to keep working on it.

 - Solomon Peachy ( pizza AT shaftnet DOT org)