Skip to content

Release cfd0d3d

Compare
Choose a tag to compare
@github-actions github-actions released this 09 Feb 01:36
0a40c12

To flash lab68:

wget https://github.com/dzervas/zmk-config/releases/download/cfd0d3d/lab68.bin -O /tmp/lab68.bin && \
go get -u github.com/apache/mynewt-mcumgr-cli/mcumgr && \
mcumgr --conntype=serial --connstring='dev=/dev/ttyACM0,baud=115200' image upload -e /tmp/lab68.bin

To flash mcuboot (connect Particle Debugger and install openocd):

wget https://github.com/dzervas/zmk-config/releases/download/cfd0d3d/mcuboot.hex -O /tmp/mcuboot.hex && \
wget https://github.com/dzervas/zmk-config/raw/main/nrf52-particle.cfg -O /tmp/nrf52-particle.cfg && \
openocd -f interface/cmsis-dap.cfg -f /tmp/nrf52-particle.cfg -c "init" -c "reset init" -c "halt" -c "program /tmp/mcuboot.hex 0x0 verify reset" -c "exit"