aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authordeveloper <[email protected]>2021-04-13 23:16:19 -0300
committerRon Evans <[email protected]>2021-04-16 17:47:31 +0200
commitcb886a35c9d6426b923020eb1ddb25a851ee568e (patch)
tree97d8796d23ecd7e31f547e2f2e128205b0dca940 /Makefile
parent57070229516bb186b6ff887cb3c900e326ecd467 (diff)
downloadtinygo-cb886a35c9d6426b923020eb1ddb25a851ee568e.tar.gz
tinygo-cb886a35c9d6426b923020eb1ddb25a851ee568e.zip
PWM Support for atmega1280
Add arduino mega 1280 PWM test
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 51e78486e..ac6f82715 100644
--- a/Makefile
+++ b/Makefile
@@ -378,7 +378,9 @@ ifneq ($(AVR), 0)
@$(MD5SUM) test.hex
$(TINYGO) build -size short -o test.hex -target=arduino -scheduler=tasks examples/blinky1
@$(MD5SUM) test.hex
- $(TINYGO) build -size short -o test.hex -target=arduino-mega1280 examples/blinky1
+ $(TINYGO) build -size short -o test.hex -target=arduino-mega1280 examples/blinky1
+ @$(MD5SUM) test.hex
+ $(TINYGO) build -size short -o test.hex -target=arduino-mega1280 examples/pwm
@$(MD5SUM) test.hex
$(TINYGO) build -size short -o test.hex -target=arduino-nano examples/blinky1
@$(MD5SUM) test.hex