@cptel typically that’s all you need. In the case you need the external fixture you:
Install probe-rs if not already:
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/probe-rs/probe-rs/releases/latest/download/probe-rs-tools-installer.sh | sh
Then,
- Plug a Raspberry Pi Debug Probe or a nRF53/nRF91 DK into the recovery fixture
- Attach USB power
- Place in fixture
- Then run
probe-rs download --chip nRF9151_xxAA --binary-format hex path/to/merged.hex
That’s the typical workflow. Internally we have rust code that uses the probe-rs
lib that detects and programs appropriately. Keeps the user error to a minimum. 😃