<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>How to flash multiple nRF51 Dongles at once?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/5516/how-to-flash-multiple-nrf51-dongles-at-once</link><description>Hello, 
 I&amp;#39;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</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 12 Feb 2015 09:11:03 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/5516/how-to-flash-multiple-nrf51-dongles-at-once" /><item><title>RE: How to flash multiple nRF51 Dongles at once?</title><link>https://devzone.nordicsemi.com/thread/19278?ContentTypeID=1</link><pubDate>Thu, 12 Feb 2015 09:11:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:02f1c847-cc9f-4a6e-badc-bab79c6e3073</guid><dc:creator>Marius Heil</dc:creator><description>&lt;p&gt;Thanks a lot. The nrfjprog tool was what I was looking for. Deploying is now about 10 times faster for me, that will greatly speed up my workflow. I&amp;#39;ve modified the file to only flash my application because I have the softdevice preprogrammed in development. Now it looks like this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;echo Parallel flashing on all dongles

SET SEGGER0=680######
SET SEGGER1=680######
SET SEGGER2=680######

SET APPHEXFILE=obj_node\fruityMesh.hex

start /min nrfjprog -s %SEGGER0% --program %APPHEXFILE% -r
start /min nrfjprog -s %SEGGER1% --program %APPHEXFILE% -r
start /min nrfjprog -s %SEGGER2% --program %APPHEXFILE% -r

echo &amp;quot;Flashing finished&amp;quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I&amp;#39;ve added the start command so that it flashes on all devices parallel. it will open a bunch of windows though, but the flashing speed is just perfect :-)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to flash multiple nRF51 Dongles at once?</title><link>https://devzone.nordicsemi.com/thread/19277?ContentTypeID=1</link><pubDate>Thu, 12 Feb 2015 08:30:37 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cd0e9d36-1ae2-4c07-b898-2322de35f705</guid><dc:creator>Asbj&amp;#248;rn</dc:creator><description>&lt;p&gt;We have made a batch file for a different SDK that program several boards at the same time. I&amp;#39;ve remove all my Segger serial numbers from this one and re-named it to a .txt file. But you can open it, edit it and rename it to a batch file (.bat). It will then program several boards at the same time using the nrfjprog tool.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/flash_5F00_boards_5F00_wired_5F00_debug_5F00_example.txt"&gt;flash_boards_wired_debug_example.txt&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to flash multiple nRF51 Dongles at once?</title><link>https://devzone.nordicsemi.com/thread/19276?ContentTypeID=1</link><pubDate>Tue, 10 Feb 2015 09:13:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9429e68d-df60-4da5-98e3-e70ae1629a84</guid><dc:creator>Marius Heil</dc:creator><description>&lt;p&gt;I managed to do the following now:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;%keilpath% -f &amp;quot;%projectpath%\project.uvprojx&amp;quot; -o &amp;quot;%projectpath%\load_045.txt&amp;quot; -t &amp;quot;ID045&amp;quot;
%keilpath% -f &amp;quot;%projectpath%\project.uvprojx&amp;quot; -o &amp;quot;%projectpath%\load_458.txt&amp;quot; -t &amp;quot;ID458&amp;quot;
%keilpath% -f &amp;quot;%projectpath%\project.uvprojx&amp;quot; -o &amp;quot;%projectpath%\load_847.txt&amp;quot; -t &amp;quot;ID847&amp;quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;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.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>