diff options
author | Elias Naur <[email protected]> | 2021-12-24 12:59:41 +0100 |
---|---|---|
committer | kenbell <[email protected]> | 2021-12-31 10:30:48 +0000 |
commit | bd7ab8ddd5d25e65ba70f4f8c8d263df66a7bc77 (patch) | |
tree | 899183c2b502ed33368df37242bd17ee39243340 /Makefile | |
parent | 302e72e84fa0a4dc4f53891e612955d3f079c78c (diff) | |
download | tinygo-bd7ab8ddd5d25e65ba70f4f8c8d263df66a7bc77.tar.gz tinygo-bd7ab8ddd5d25e65ba70f4f8c8d263df66a7bc77.zip |
targets,runtime,machine: add support for the stm32f469-disco board
The LEDs and button work; I haven't tested the SPI and I2C
configuration.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -453,6 +453,8 @@ ifneq ($(STM32), 0) @$(MD5SUM) test.hex $(TINYGO) build -size short -o test.hex -target=stm32f4disco-1 examples/pwm @$(MD5SUM) test.hex + $(TINYGO) build -size short -o test.hex -target=stm32f469disco examples/blinky1 + @$(MD5SUM) test.hex $(TINYGO) build -size short -o test.hex -target=lorae5 examples/blinky1 @$(MD5SUM) test.hex endif |