This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to flash multiple nRF51 Dongles at once?

Hello,

I'm curious about how to deploy my application to multiple nRF51 Dongles at the same time while I am developing. I have the same application / hex file running on all Dongles, but I have not yet found a way to configure a parallel deploy in either keil or via a batch file. I was trying to use J-Flash, but it tells me that I do not have a licence....

Parents
  • I managed to do the following now:

    %keilpath% -f "%projectpath%\project.uvprojx" -o "%projectpath%\load_045.txt" -t "ID045"
    %keilpath% -f "%projectpath%\project.uvprojx" -o "%projectpath%\load_458.txt" -t "ID458"
    %keilpath% -f "%projectpath%\project.uvprojx" -o "%projectpath%\load_847.txt" -t "ID847"
    

    I tried to put start before every line to let it execute parallel, but apparently, KEIL has not been programmed correctly for this to work. Flashing fails most of the time if I execute these command parallel. But I could save a lot of time if this would work.

Reply
  • I managed to do the following now:

    %keilpath% -f "%projectpath%\project.uvprojx" -o "%projectpath%\load_045.txt" -t "ID045"
    %keilpath% -f "%projectpath%\project.uvprojx" -o "%projectpath%\load_458.txt" -t "ID458"
    %keilpath% -f "%projectpath%\project.uvprojx" -o "%projectpath%\load_847.txt" -t "ID847"
    

    I tried to put start before every line to let it execute parallel, but apparently, KEIL has not been programmed correctly for this to work. Flashing fails most of the time if I execute these command parallel. But I could save a lot of time if this would work.

Children
No Data
Related