Go to file
David Sawatzke 168fdd8aa1 Use the smallest available flash& ram size
Build as release so we can be sure they fit
2018-12-18 17:21:30 +01:00
.cargo First release of stm32f0xx-hal based on stm32f042-hal 2018-12-06 23:04:26 +01:00
examples Add timer example 2018-12-18 17:21:30 +01:00
src Add timer implementation 2018-12-18 17:21:30 +01:00
tools First release of stm32f0xx-hal based on stm32f042-hal 2018-12-06 23:04:26 +01:00
.gitignore First release of stm32f0xx-hal based on stm32f042-hal 2018-12-06 23:04:26 +01:00
.travis.yml Use the smallest available flash& ram size 2018-12-18 17:21:30 +01:00
Cargo.toml Disable some examples on stm32f030 2018-12-18 17:21:30 +01:00
LICENSE-0BSD.txt Added forgotten LICENSE file 2018-12-16 21:40:57 +01:00
README.md Update README 2018-12-16 19:59:56 +01:00
memory.x Use the smallest available flash& ram size 2018-12-18 17:21:30 +01:00
openocd.cfg First release of stm32f0xx-hal based on stm32f042-hal 2018-12-06 23:04:26 +01:00
openocd_program.sh First release of stm32f0xx-hal based on stm32f042-hal 2018-12-06 23:04:26 +01:00

README.md

stm32f0xx-hal

stm32f0xx-hal contains a hardware abstraction on top of the peripheral access API for the STMicro STM32F0xx family of microcontrollers. It replaces the stm32f042-hal by a more ubiqitous version suitable for additional families.

Currently supported configuration are:

  • stm32f042
  • stm32f030
  • stm32f030x4
  • stm32f030x6
  • stm32f030x8
  • stm32f030xc

The idea behind this crate is to gloss over the slight differences in the various peripherals available on those MCUs so a HAL can be written for all chips in that same family without having to cut and paste crates for every single model.

Collaboration on this crate is highly welcome as are pull requests!

This crate relies on Adam Greigs fantastic stm32f0 crate to provide appropriate register definitions and implements a partial set of the embedded-hal traits.

Some of the implementation was shamelessly adapted from the stm32f103xx-hal crate by Jorge Aparicio.

License

0-clause BSD license.