You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Daniel Egger 77a6dad00a Improved serial write_str implementation to properly handle errors
Signed-off-by: Daniel Egger <daniel@eggers-club.de>
4 years ago
.cargo First release of stm32f0xx-hal based on stm32f042-hal 4 years ago
examples Update to stm32f0 - 0.6.0 (#52) 4 years ago
src Improved serial write_str implementation to properly handle errors 4 years ago
tools Tweaks to travis to run plain builds and faster cargo executions (#39) 4 years ago
.gitignore First release of stm32f0xx-hal based on stm32f042-hal 4 years ago
.travis.yml Tweaks to travis to run plain builds and faster cargo executions (#39) 4 years ago
CHANGELOG.md Improved serial write_str implementation to properly handle errors 4 years ago
Cargo.toml Update to stm32f0 - 0.6.0 (#52) 4 years ago
LICENSE-0BSD.txt Added forgotten LICENSE file 4 years ago
README.md Update CHANGELOG and README 4 years ago
memory.x Use the smallest available flash& ram size 4 years ago
openocd.cfg First release of stm32f0xx-hal based on stm32f042-hal 4 years ago
openocd_program.sh First release of stm32f0xx-hal based on stm32f042-hal 4 years ago

README.md

stm32f0xx-hal

Travis Crates.io docs.rs

stm32f0xx-hal contains a hardware abstraction on top of the peripheral access API for the STMicro STM32F0xx family of microcontrollers.

This crate replaces the stm32f042-hal by a more ubiquitous version suitable for additional families. 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.

This crate relies on Adam Greig's 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.

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

Supported Configurations

  • stm32f030 (stm32f030x4, stm32f030x6, stm32f030x8, stm32f030xc)
  • stm32f031
  • stm32f038
  • stm32f042
  • stm32f048
  • stm32f051
  • stm32f058
  • stm32f070 (stm32f070x6, stm32f070xb)
  • stm32f071
  • stm32f072
  • stm32f078
  • stm32f091
  • stm32f098

Getting Started

If you are unfamiliar with embedded development using Rust, there are a number of fantastic resources available to help.

Changelog

See CHANGELOG.md.

License

0-Clause BSD License, see LICENSE-0BSD.txt for more details.