diff options
Diffstat (limited to 'hid/Makefile')
-rw-r--r-- | hid/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hid/Makefile b/hid/Makefile index 6987ef52..05c21f75 100644 --- a/hid/Makefile +++ b/hid/Makefile @@ -16,8 +16,8 @@ upload: bash -ex -c " \ current=`cat .current`; \ if [ '$($@_CURRENT)' == 'spi' ] || [ '$($@_CURRENT)' == 'aum' ]; then \ - gpio -g write 25 1; \ - gpio -g write 25 0; \ + gpioset 0 25=1; \ + gpioset 0 25=0; \ fi \ " platformio run --environment '$($@_CURRENT)' --target upload |