<?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 translate nrfjprog --readcode addresses</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/10606/how-to-translate-nrfjprog---readcode-addresses</link><description>I performed flash read using nrfjprog --readcode . here the snipped of the output file 
 :020000040000FA
:10000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00
:10001000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0
:10002000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0
:10003000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 02 Dec 2015 14:30:15 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/10606/how-to-translate-nrfjprog---readcode-addresses" /><item><title>RE: how to translate nrfjprog --readcode addresses</title><link>https://devzone.nordicsemi.com/thread/39520?ContentTypeID=1</link><pubDate>Wed, 02 Dec 2015 14:30:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:aa007c83-c375-41a1-a20f-6e425e711b79</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;readcode returns the content of flash in the intel hex format. One option is to use a python script called &lt;a href="https://pypi.python.org/pypi/IntelHex/1.2"&gt;hex2dump&lt;/a&gt; to get it in a more readable format. E.g.,&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;python hex2dump &amp;lt;name&amp;gt;.hex &amp;gt; &amp;lt;output name&amp;gt;.txt
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;However, if you only want to read memory at a particular address it is easier to use the &amp;quot;--memrd&amp;quot; command in nrfjprog.&lt;/p&gt;
&lt;p&gt;EDIT: forgot that you can pipe the output from memrd as well:&lt;/p&gt;
&lt;p&gt;nrfjprog --memrd   --n  &amp;gt; output name.txt&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>