<?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>Cleaning up IRAM2</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/30448/cleaning-up-iram2</link><description>Hello, I need to clean up IRAM2 by code in my prorgamm? How can I do this?</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 13 Feb 2018 20:34:06 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/30448/cleaning-up-iram2" /><item><title>RE: Cleaning up IRAM2</title><link>https://devzone.nordicsemi.com/thread/120754?ContentTypeID=1</link><pubDate>Tue, 13 Feb 2018 20:34:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7bd951cf-75b4-41a4-9eb0-5887ac9f76be</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;How about something like this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;uint32_t * iram2_start_addr = (uint32_t *) 0x20001000;
uint8_t clean_value = 0xFF;
uint32_t iram_size = 0x1000;

memset(iram2_start_addr, clean_value, iram_size);&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>