stm32f429 0.2.5

Peripheral access API for STM32F429 microcontrollers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh
d="$(dirname "$0")"
t=
on_exit() {
	if [ "$t" ]; then
		rm -f "$t"
	fi
}
trap on_exit EXIT
t=$(mktemp)

cp "$1" "$t"
patch "$t" STM32F429.patch
svd2rust -i "$t" | rustfmt >"$d/src/lib.rs"