<?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>8-bit MicrocontrollersのトピックRe: pb size programm with sepcial edition code warrior</title>
    <link>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665109#M22376</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Votre Anglais est bien, mais mon Francais est bien pire!&lt;/P&gt;&lt;P&gt;I have switched from using CW to another vendor for project compatability reasons, but I will see if I can recreate your error as I still have CW installed on my PC.&lt;/P&gt;&lt;P&gt;I *think* that the problem is with the use of your line :&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#pragma DATA_SEG __SHORT_SEG MY_ZEROPAGE&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Though I would have expected it to be flagged as error during compilation and not downloading.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;If you go to the CW help and type in:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #prgama DATA_SEG __SHORT_SEG&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;it actually shows a file with textgiving that as incorrect usage when used with the #pragma DATA_SEG DEFAULT &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;I think that one of the Freescale support people may be along soon to render aid, but as for now, this is the only advice that I can think of.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jan 2017 14:51:16 GMT</pubDate>
    <dc:creator>mfugere</dc:creator>
    <dc:date>2017-01-11T14:51:16Z</dc:date>
    <item>
      <title>pb size programm with sepcial edition code warrior</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665106#M22373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;bonjour&lt;/P&gt;&lt;P&gt;j'ai réinstallé code warrior special edition sur mon PC.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&lt;/EM&gt;&amp;nbsp;&amp;nbsp;&lt;SPAN style="font-size: 13px;"&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&lt;SPAN style="color: #0000ff;"&gt;I have reinstalled&amp;nbsp;&amp;nbsp;&amp;nbsp; code warrior special edition on my PC.&lt;/SPAN&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;en assembleur : aucun problem&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="font-size: 12px; color: #0000ff;"&gt; With assembler no problem all is work correctly&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;en C&amp;nbsp; , il compile et charge correctement le mpu au travers&amp;nbsp; de multilink universal depuis un ancien program écrit en C&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;SPAN style="color: #0000ff; font-size: 12px;"&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; With C langage code Warrior work correctly whitout error&amp;nbsp; with an old little programme writing in C&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;mais quand je crée un nouveau programme en C et ou C++ , il me donne un message d'erreur&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #0000ff; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Then when I want create a new program in C, I get this error.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;"Failed to resume target process., The debugger download size has been exceeded. This limit is specified in the license file."&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;De plus, le fichier licence n'existe pas.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; color: #0000ff;"&gt;When I open the window about licence, no licence is show.. I think that is normal because codeWarrior sepcial edition don't use&amp;nbsp; it &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;le source est celui-ci:&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #0000ff; font-size: 13px;"&gt;The program I want to create is the follow:&lt;/EM&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#include &amp;lt;hidef.h&amp;gt; /* for EnableInterrupts macro */&lt;BR /&gt;#include "derivative.h" /* include peripheral declarations */&lt;BR /&gt;/********************************************* page zero forçage */&lt;BR /&gt;#pragma DATA_SEG __SHORT_SEG MY_ZEROPAGE&lt;BR /&gt;#pragma DATA_SEG DEFAULT&lt;BR /&gt;void main(void) &lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; EnableInterrupts;&lt;BR /&gt;&amp;nbsp; SOPT1_COPE = 0;&lt;BR /&gt;&amp;nbsp; SOPT1_RSTPE = 0;&lt;BR /&gt;&amp;nbsp; PTADD = 0xff;&lt;BR /&gt;&amp;nbsp; PTAD = 255;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; for(;;) &lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; PTAD = 255;&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;}&lt;/EM&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Merci pour&amp;nbsp; votre aide&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jan 2017 15:46:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665106#M22373</guid>
      <dc:creator>bourineauthierr</dc:creator>
      <dc:date>2017-01-06T15:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: pb size programm with sepcial edition code warrior</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665107#M22374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For which version/product microcontroller are you compiling for?&amp;nbsp; I do not know if it is the cause or not, but I do not think the special edition does not have support for all versions of the microcontrollers, and perhaps you are targeting a version of MC9S08 controller that is not included by the compiler?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2017 17:36:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665107#M22374</guid>
      <dc:creator>mfugere</dc:creator>
      <dc:date>2017-01-10T17:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: pb size programm with sepcial edition code warrior</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665108#M22375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is the product s08QD4. Code warrior work correctly with another program &amp;nbsp;of an old project for the same product QD4.&lt;/P&gt;&lt;P&gt;When I try to compile a new project that I get this error.&lt;/P&gt;&lt;P&gt;may be it is since I reinstalled code warrior special edition.&lt;/P&gt;&lt;P&gt;thank and sorry for my bad english.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2017 01:38:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665108#M22375</guid>
      <dc:creator>bourineauthierr</dc:creator>
      <dc:date>2017-01-11T01:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: pb size programm with sepcial edition code warrior</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665109#M22376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Votre Anglais est bien, mais mon Francais est bien pire!&lt;/P&gt;&lt;P&gt;I have switched from using CW to another vendor for project compatability reasons, but I will see if I can recreate your error as I still have CW installed on my PC.&lt;/P&gt;&lt;P&gt;I *think* that the problem is with the use of your line :&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#pragma DATA_SEG __SHORT_SEG MY_ZEROPAGE&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Though I would have expected it to be flagged as error during compilation and not downloading.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;If you go to the CW help and type in:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #prgama DATA_SEG __SHORT_SEG&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;it actually shows a file with textgiving that as incorrect usage when used with the #pragma DATA_SEG DEFAULT &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;I think that one of the Freescale support people may be along soon to render aid, but as for now, this is the only advice that I can think of.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2017 14:51:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665109#M22376</guid>
      <dc:creator>mfugere</dc:creator>
      <dc:date>2017-01-11T14:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: pb size programm with sepcial edition code warrior</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665110#M22377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had already try without "pragma.." &amp;nbsp;but it is&amp;nbsp;again the same error&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will check the program for wich &amp;nbsp;code warrioir accepts compile else I will work with &amp;nbsp;assembler ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Realy the C++ is not indispensable for my little development.&lt;/P&gt;&lt;P&gt;If I find a solution later , I will do know to you.&lt;/P&gt;&lt;P&gt;thank you for your responses and reactivity.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2017 15:55:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665110#M22377</guid>
      <dc:creator>bourineauthierr</dc:creator>
      <dc:date>2017-01-11T15:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: pb size programm with sepcial edition code warrior</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665111#M22378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is work only with compiler C but not &amp;nbsp;if I select C++ &amp;nbsp;!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So codewarrioir &amp;nbsp;special edition seem not accepted C++&lt;/P&gt;&lt;P&gt;May be it is write into documentation.. I have don't seen&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;again thank for your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2017 16:12:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665111#M22378</guid>
      <dc:creator>bourineauthierr</dc:creator>
      <dc:date>2017-01-11T16:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: pb size programm with sepcial edition code warrior</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665112#M22379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it is correct that C++ support is only allowed with the paid, professional edition of the CW tools.&amp;nbsp;&amp;nbsp; I do not find it in the help documentation but it does give a small notice on the bottom of the project properties dialog if you change selection from "C" to "C++" when creating a new project.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Since the Special Edition runs without the professional paid license, I can see where this would cause an error/failure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, hopefully this will be the last of the problems for your project!&lt;/P&gt;&lt;P&gt;Actually, for a small device like 9S08QD4, I like to remain in "C" and not "C++" as C++ can add extra collection/management code (as it should) that I do not always think about, and I might run out of code space faster than I expect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A plus tard!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2017 16:28:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/pb-size-programm-with-sepcial-edition-code-warrior/m-p/665112#M22379</guid>
      <dc:creator>mfugere</dc:creator>
      <dc:date>2017-01-11T16:28:18Z</dc:date>
    </item>
  </channel>
</rss>

