<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: About Processor Expert  NVOPT NVPROT initialization (MC9S08DZ60) in CodeWarrior for MCU</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201225#M7571</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My own solution for this problem was to define two static variables with the same name and place them in my own main program. If i have forgot to comment them out in cpu.c, the compiler will throw an error at me :smileyhappy:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Feb 2010 21:22:30 GMT</pubDate>
    <dc:creator>Limestone</dc:creator>
    <dc:date>2010-02-09T21:22:30Z</dc:date>
    <item>
      <title>About Processor Expert  NVOPT NVPROT initialization (MC9S08DZ60)</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201220#M7566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any means to disable variable initialization (NVOPT NVPROT) with processor Expert (CW for MCU 6.2)?&lt;/P&gt;&lt;P&gt;In the CPU bean inspector "security state" and "protected area" are disabled, but PE always generate this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;
/* NVPROT: EPS=3,FPS=0x3F */
const unsigned char NVPROT_INIT @0x0000FFBD = 0xFF;

/* NVOPT: KEYEN=0,FNORED=1,EPGMOD=1,??=1,??=1,??=1,SEC1=1,SEC0=0 */
const unsigned char NVOPT_INIT @0x0000FFBF = 0x7E;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;which cause some errors messages with the bootloader.&lt;/P&gt;&lt;P&gt;&amp;nbsp;I remove this lines manually, but it's not an academic methode.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Emmanuel&lt;/P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="message-edit-history"&gt;&lt;SPAN class="edit-author"&gt;Message Edited by BugMan on&lt;/SPAN&gt; &lt;SPAN class="local-date"&gt;2009-07-21&lt;/SPAN&gt; &lt;SPAN class="local-time"&gt;01:09 PM&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2009 18:07:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201220#M7566</guid>
      <dc:creator>Nouchi</dc:creator>
      <dc:date>2009-07-21T18:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: About Processor Expert  NVOPT NVPROT initialization (MC9S08DZ60)</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201221#M7567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;could you please specify what kind of bootloader are you using? Could you please post here a project that leads you to getting the error?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;best regards&lt;BR /&gt;Vojtech Filip&lt;BR /&gt;Processor Expert Support Team&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 21:42:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201221#M7567</guid>
      <dc:creator>ProcessorExpert</dc:creator>
      <dc:date>2009-07-22T21:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: About Processor Expert  NVOPT NVPROT initialization (MC9S08DZ60)</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201222#M7568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The bootloader was inspired from the AN2295, but it used the MSCAN08 instead standard SCI.&lt;/P&gt;&lt;P&gt;The boatloader complain about (NVOPT, NVPROT registers) data outside memory application boundaries. And I don't want (and I can't) modified bootloader. Indeed, NVOPT and NVPROT register are set in the bootloader code.&lt;/P&gt;&lt;P&gt;I was looking for a solution to disable code generation for NVOPT an NVPROT registers with ProcessorExpert.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Emmanuel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2009 13:11:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201222#M7568</guid>
      <dc:creator>Nouchi</dc:creator>
      <dc:date>2009-07-24T13:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: About Processor Expert  NVOPT NVPROT initialization (MC9S08DZ60)</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201223#M7569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Emmanuel,&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;currently there is no such option or fetaure in Processor Expert to disable/enable code generation for NVOPT and NVPROT registers. For now as workaround is there the only possibility to disable code generation of whole project using "Freeze Generated Code" menu command (Processor Expert/Freeze Generated Code) and modify the CPU.c file manually.&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;However I have passed the request of new feature to handle the code generation of NVOPT and NVPROT registers to developers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;best regards&lt;BR /&gt;Vojtech Filip&lt;BR /&gt;Processor Expert Support Team&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jul 2009 14:12:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201223#M7569</guid>
      <dc:creator>ProcessorExpert</dc:creator>
      <dc:date>2009-07-29T14:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: About Processor Expert  NVOPT NVPROT initialization (MC9S08DZ60)</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201224#M7570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are there any progress on this issue?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jan 2010 16:32:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201224#M7570</guid>
      <dc:creator>Limestone</dc:creator>
      <dc:date>2010-01-13T16:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: About Processor Expert  NVOPT NVPROT initialization (MC9S08DZ60)</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201225#M7571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My own solution for this problem was to define two static variables with the same name and place them in my own main program. If i have forgot to comment them out in cpu.c, the compiler will throw an error at me :smileyhappy:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2010 21:22:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201225#M7571</guid>
      <dc:creator>Limestone</dc:creator>
      <dc:date>2010-02-09T21:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: About Processor Expert  NVOPT NVPROT initialization (MC9S08DZ60)</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201226#M7572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Martin and Emmanuel,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;requested option has been already supported in Processor Expert V3.08. Publishing this version is scheduled for end of Q2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;best regards&lt;BR /&gt;Vojtech Filip&lt;BR /&gt;Processor Expert Support Team&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Feb 2010 16:38:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/About-Processor-Expert-NVOPT-NVPROT-initialization-MC9S08DZ60/m-p/201226#M7572</guid>
      <dc:creator>ProcessorExpert</dc:creator>
      <dc:date>2010-02-12T16:38:28Z</dc:date>
    </item>
  </channel>
</rss>

