diff options
author | tomaszduda23 <[email protected]> | 2022-07-22 14:14:38 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2022-07-22 08:14:38 +0300 |
commit | 3ba15e824e319926c810414b44fb30a7d98419c3 (patch) | |
tree | 54ad4e24c2bae61f73fd4becbf4bbccb5466cfed /hid/Makefile | |
parent | 0e0fe28cf6dd4668e12dcac4148b0790cd41df8e (diff) |
Stm32 init (#100)
Diffstat (limited to 'hid/Makefile')
-rw-r--r-- | hid/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hid/Makefile b/hid/Makefile index 4f671ca3..4efc42b4 100644 --- a/hid/Makefile +++ b/hid/Makefile @@ -4,6 +4,9 @@ spi: make _build E=spi C=avr aum: make _build E=aum C=avr +stm32: + platformio run --environment patch --project-conf platformio-stm32.ini + make _build E=serial C=stm32 _build: rm -f .current .config platformio run --environment $(E) --project-conf platformio-$(C).ini @@ -11,7 +14,7 @@ _build: echo -n $(C) > .config # Added to easy test all builds -_build_all: aum spi serial +_build_all: aum spi serial stm32 rm -f .current .config install: upload |