-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nrfjprog support #17
Nrfjprog support #17
Conversation
Where are located the binaries of this tool for all architectures/OS? |
I would like to see nrfjprog or something similar like https://github.com/NordicPlayground/nRF5-universal-prog, but afaik they all require jlink binaries, e.g. dll re: binaries, this is tricky, as you have the nrfjprog binaries from nordic plus the jlink software. Not sure of the redistribution issues here? |
You can configure a custom uploader via http://docs.platformio.org/en/latest/projectconf/advanced_scripting.html#custom-uploader |
@ivankravets I don't think that the custom uploader works with other platforms than Atmel AVR. You can download the tools here: |
@jeanmatthieud THANK YOU SO MUCH for this PR and links to binaries. Please re-test with the latest version of dev/platform [env:..]
platform = https://github.com/platformio/platform-nordicnrf51.git
upload_protocol = nrfjprog |
btw, i found a way to do this via extra_scripts... an example (on an experimental 8051 platform, using stcgal): |
Adds the possibility to use the nrfjprog tool of Nordic Semi (nrf5x command line tools) by setting
upload_protocol = nrfjprog
in the platformio.ini file env configuration.