Small-ish cc-tool Docker image to flash your CC2531 Zigbee dongle.
You can find firmware files from here.
$ mkdir cc2531-flash && cd cc2531-flash/
$ # download firmware file here...
$ docker run --privileged --rm -it -v "$(pwd):/workspace" joonas/cc-tool -e -w CC2531ZNP-Prod.hex
The --privileged
is required for USB access. I guess one could map a single --device
but I couldn't
be bothered to find out the particular device for the debugger device.
- https://github.com/alexalex89/docker-cc-tool (2 years old)