diff options
author | developer <[email protected]> | 2021-04-13 23:16:19 -0300 |
---|---|---|
committer | Ron Evans <[email protected]> | 2021-04-16 17:47:31 +0200 |
commit | cb886a35c9d6426b923020eb1ddb25a851ee568e (patch) | |
tree | 97d8796d23ecd7e31f547e2f2e128205b0dca940 /Makefile | |
parent | 57070229516bb186b6ff887cb3c900e326ecd467 (diff) | |
download | tinygo-cb886a35c9d6426b923020eb1ddb25a851ee568e.tar.gz tinygo-cb886a35c9d6426b923020eb1ddb25a851ee568e.zip |
PWM Support for atmega1280
Add arduino mega 1280 PWM test
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |