Awesome
This repository contains source code for the articles
- STM32 Discovery Development on Linux
- STM32F4 Discovery Semihosting with the GNU Tools for Embedded ARM Processors Toolchain
- STM32F4 Discovery Virtual COM/Serial Port
- LED blinker sample code (buildable)
- USB virtual serial port code (buildable)
- Semihosting Hello World sample code (buildable)
- STM sample code (buildable)
- STM libraries and headers
STM's approach toward 'library code' is somewhat non-traditional. Rather than building libraries up front and linking them with your source, STM appears to intend for you to include their individual source files in your code's build. Some of their source files include local headers and modules (i.e. stm32f4xx_conf.h, stm32f4xx_it.c/h, system_stm32f4xx.c, etc) that you modify/store in your source tree. Because of this, building the library up front wouldn't work properly, as the configuration for some library modules could vary from project to project.