diff options
author | Devaev Maxim <[email protected]> | 2020-10-19 23:31:46 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-11-11 22:24:25 +0300 |
commit | c27b8909dc425b4c06a12264de77877419a13497 (patch) | |
tree | f0fe668c14518cd180d3949070bc67bce02d94f0 /hid/Makefile | |
parent | 9a10b59ba5a894e704d37a51c562c905d486b72e (diff) |
spi
Diffstat (limited to 'hid/Makefile')
-rw-r--r-- | hid/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hid/Makefile b/hid/Makefile index 0d07db84..81fe129d 100644 --- a/hid/Makefile +++ b/hid/Makefile @@ -4,6 +4,12 @@ ps2: make _build E=ps2 mixed: make _build E=mixed +usb-spi: + make _build E=usb_spi +ps2-spi: + make _build E=ps2_spi +mixed-spi: + make _build E=mixed_spi _build: rm -f .current platformio run --environment $(E) @@ -15,11 +21,18 @@ upload: platformio run --environment $(shell cat .current) --target upload +bootloader-spi: install-bootloader-spi +install-bootloader-spi: upload-bootloader-spi +upload-bootloader-spi: + platformio run --environment bootloader_spi --target bootloader + + update: platformio platform update clean-all: clean + rm -rf .platformio clean: rm -rf .pio .current |