Hello,
We have a custom board for nRF52805. We have one LED connected to the GPIO. I wrote the FW for Blink LED every second.
I build the FW using the command "west build -b my_board -p always". it generates the zephyr.hex file. I flashed that file with various methods as follows.
- Using west flash
- command: "west flash --reset"
- result: LED did not blink.
- Using west flash with erase
- command:
- "nrfjprog --eraseall"
- "west flash --reset"
- result: LED did not blink.
- command:
- Using nrfjprog command
- command
- "nrfjprog --eraseall"
- "nrfjprog -f nrf52 --program build\zephyr\zephyr.hex --verify --reset"
- result: LED blinks every second.
- command
- Using nRF connect for desktop application
- use zephyr.hex and select "Erase&Write" options.
- result: LED blinks every second.
Can anyone explain why West Command is not working? how to solve this issue?
Thanks,
Dinkar Patel