diff options
author | ardnew <[email protected]> | 2020-09-01 04:31:41 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2020-09-01 11:31:41 +0200 |
commit | 7f829fe1538671800674d90a5ef47eb6f7a81cd7 (patch) | |
tree | 09f3379901a0f42cb5ac732cb5f2a3107da21205 /src/device | |
parent | 946184b8bac112b5a574a86af4425f84dc55e21e (diff) | |
download | tinygo-7f829fe1538671800674d90a5ef47eb6f7a81cd7.tar.gz tinygo-7f829fe1538671800674d90a5ef47eb6f7a81cd7.zip |
machine/stm32f4: refactor common code and add new build tag stm32f4 (#1332)
* machine/STM32F4: break out STM32F4 machine with new build tag
Diffstat (limited to 'src/device')
-rw-r--r-- | src/device/stm32/stm32f4-altfunc-bitfields.go (renamed from src/device/stm32/stm32f407xx-altfunc-bitfields.go) | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/device/stm32/stm32f407xx-altfunc-bitfields.go b/src/device/stm32/stm32f4-altfunc-bitfields.go index 809cb203e..8dca2bf28 100644 --- a/src/device/stm32/stm32f407xx-altfunc-bitfields.go +++ b/src/device/stm32/stm32f4-altfunc-bitfields.go @@ -1,7 +1,9 @@ -// These are the supported alternate function numberings on the stm32f407 -// +build stm32,stm32f407 +// Hand created file. DO NOT DELETE. +// STM32FXXX (except stm32f1xx) bitfield definitions that are not +// auto-generated by gen-device-svd.go +// +build stm32f4 -// Alternate function settings on the stm32f4xx series +// Alternate function settings on the stm32f4 series package stm32 |