You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Compile and flash the user part
flash-user: preprocess
cd "${DEVICE_OS_PATH}/main" && make all program-dfu
# Compile and flash the user and system parts
flash-all: preprocess
cd "${DEVICE_OS_PATH}/modules" && make all program-dfu
# Compile and flash debug build
flash-debug:
cd "${DEVICE_OS_PATH}/main" && make all program-dfu MODULAR=n USE_SWD_JTAG=y
I've spent the last month creating neopo, a replacement for po-util written in Python. The issues you faced are now virtually nonexistent: the Particle makefile has been fixed, and neopo uses particle-cli to induce dfu mode with libudev.
(This is a summary of our discussion on gitter.im)
Issue 1
po xenon flash-beta
fails for me on arch linux in the linker step:This can be most easily fixed by adding the
all
target to the make invocations in particle.mk https://github.com/nrobinson2000/po/blob/master/share/particle.mk#L44-L54:Issue 2
po dfu
fails to find my xenon because I have another /dev/ttyACM device. This can be improved by changing the default setting of MODEM in https://github.com/nrobinson2000/po/blob/master/share/po-linux#L432-L435 toThanks for creating po-util!!!
The text was updated successfully, but these errors were encountered: