<?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>MQX Software SolutionsのトピックRe: H-Files not moved after compiling the BSP</title>
    <link>https://community.nxp.com/t5/MQX-Software-Solutions/H-Files-not-moved-after-compiling-the-BSP/m-p/429561#M14339</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the answer.&lt;/P&gt;&lt;P&gt;Those two commandlines are there and also the files are copied.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On top of that I even have the two lines which shoud exactly copy my desired files:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is a bit strange because with one of my ported BSPs it is working and with one it's not, even though it looks good to me in&lt;/P&gt;&lt;P&gt;both cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copying files is working:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14376670049245798" data-renderedposition="239_8_1232_32" jivemacro_uid="_14376670049245798" modifiedtitle="true"&gt;&lt;P&gt;for /R "%ROOTDIR%\mqx\build\cw10gcc\bsp_RSc_K20\Generated_Code" %%f in (*.h) do copy %%f "%OUTPUTDIR%\Generated_Code\"&lt;/P&gt;&lt;P&gt;for /R "%ROOTDIR%\mqx\build\cw10gcc\bsp_RSc_K20\Sources" %%f in (*.h) do copy %%f "%OUTPUTDIR%\Sources\"&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copying files not working:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14376671705296437 jive_text_macro" data-renderedposition="313_8_1232_32" jivemacro_uid="_14376671705296437" modifiedtitle="true"&gt;&lt;P&gt;for /R "%ROOTDIR%\mqx\build\cw10gcc\MembrasensV1\Generated_Code" %%f in (*.h) do copy %%f "%OUTPUTDIR%\Generated_Code\"&lt;/P&gt;&lt;P&gt;for /R "%ROOTDIR%\mqx\build\cw10gcc\MembrasensV1\Sources" %%f in (*.h) do copy %%f "%OUTPUTDIR%\Sources\"&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--------------------- ANSWER ------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok while writing this i found the mistake. It's a typo.&lt;/P&gt;&lt;P&gt;I forgot to put bsp_ in front of the above mentioned path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This must have happened while copying the whole .bat file from the previously ported BSP.&lt;/P&gt;&lt;P&gt;The name of the BSP is in the whole .bat file w/o bsp_ and only there with bsp_ .&lt;/P&gt;&lt;P&gt;I just was not careful enough while changing the names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway. Thanks again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Jul 2015 16:09:13 GMT</pubDate>
    <dc:creator>demheld</dc:creator>
    <dc:date>2015-07-23T16:09:13Z</dc:date>
    <item>
      <title>H-Files not moved after compiling the BSP</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/H-Files-not-moved-after-compiling-the-BSP/m-p/429559#M14337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everybody&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I compile my (ported) BSP the Processor Expert Files are not moved into the&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{MQXRootDir}\lib\MyOwnBSP\debug\bsp\Generated_Code&amp;nbsp; and&lt;/P&gt;&lt;P&gt;{MQXRootDir}\lib\MyOwnBSP\debug\bsp\Sources&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which then throws an Error while compiling the actual project saying it couldn't find the corresponding h-files.&lt;/P&gt;&lt;P&gt;So all the components from PEx are not seen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am, for now, copying all the h-files manually from&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{MQXRootDir}\mqx\build\cw10gcc\MyOwnBSP\Generated_Code&lt;/P&gt;&lt;P&gt;{MQXRootDir}\mqx\build\cw10gcc\MyOwnBSP\Sources&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;{MQXRootDir}\lib\MyOwnBSP\debug\bsp\Generated_Code&amp;nbsp; and&lt;/P&gt;&lt;P&gt;{MQXRootDir}\lib\MyOwnBSP\debug\bsp\Sources&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't really understand where exactly I messed up during my BSP porting procedure and what i have to fix.&lt;/P&gt;&lt;P&gt;Is it the make Files? Or the MyOwnBSP.bat file? I tried comparing with a running ported BSP (almost the same) and couldn't find&lt;/P&gt;&lt;P&gt;the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It would be lovely if someone pointed me into the right direction where to find the mistake.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 15:46:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/H-Files-not-moved-after-compiling-the-BSP/m-p/429559#M14337</guid>
      <dc:creator>demheld</dc:creator>
      <dc:date>2015-07-21T15:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: H-Files not moved after compiling the BSP</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/H-Files-not-moved-after-compiling-the-BSP/m-p/429560#M14338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you can check the post build scripts file for your board&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's take twrk64f120m for example&lt;/P&gt;&lt;P&gt;C:\Freescale\Freescale_MQX_4_2\mqx\build\bat\bsp_twrk64f120m.bat&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;copy "%ROOTDIR%\mqx\source\bsp\twrk64f120m\PE_LDD.h" "%OUTPUTDIR%\Generated_Code\PE_LDD.h" /Y&lt;/P&gt;&lt;P&gt;copy "%ROOTDIR%\mqx\source\bsp\twrk64f120m\PE_Types.h" "%OUTPUTDIR%\Generated_Code\PE_Types.h" /Y&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 08:23:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/H-Files-not-moved-after-compiling-the-BSP/m-p/429560#M14338</guid>
      <dc:creator>danielchen</dc:creator>
      <dc:date>2015-07-23T08:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: H-Files not moved after compiling the BSP</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/H-Files-not-moved-after-compiling-the-BSP/m-p/429561#M14339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the answer.&lt;/P&gt;&lt;P&gt;Those two commandlines are there and also the files are copied.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On top of that I even have the two lines which shoud exactly copy my desired files:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is a bit strange because with one of my ported BSPs it is working and with one it's not, even though it looks good to me in&lt;/P&gt;&lt;P&gt;both cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copying files is working:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14376670049245798" data-renderedposition="239_8_1232_32" jivemacro_uid="_14376670049245798" modifiedtitle="true"&gt;&lt;P&gt;for /R "%ROOTDIR%\mqx\build\cw10gcc\bsp_RSc_K20\Generated_Code" %%f in (*.h) do copy %%f "%OUTPUTDIR%\Generated_Code\"&lt;/P&gt;&lt;P&gt;for /R "%ROOTDIR%\mqx\build\cw10gcc\bsp_RSc_K20\Sources" %%f in (*.h) do copy %%f "%OUTPUTDIR%\Sources\"&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copying files not working:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14376671705296437 jive_text_macro" data-renderedposition="313_8_1232_32" jivemacro_uid="_14376671705296437" modifiedtitle="true"&gt;&lt;P&gt;for /R "%ROOTDIR%\mqx\build\cw10gcc\MembrasensV1\Generated_Code" %%f in (*.h) do copy %%f "%OUTPUTDIR%\Generated_Code\"&lt;/P&gt;&lt;P&gt;for /R "%ROOTDIR%\mqx\build\cw10gcc\MembrasensV1\Sources" %%f in (*.h) do copy %%f "%OUTPUTDIR%\Sources\"&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--------------------- ANSWER ------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok while writing this i found the mistake. It's a typo.&lt;/P&gt;&lt;P&gt;I forgot to put bsp_ in front of the above mentioned path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This must have happened while copying the whole .bat file from the previously ported BSP.&lt;/P&gt;&lt;P&gt;The name of the BSP is in the whole .bat file w/o bsp_ and only there with bsp_ .&lt;/P&gt;&lt;P&gt;I just was not careful enough while changing the names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway. Thanks again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 16:09:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/H-Files-not-moved-after-compiling-the-BSP/m-p/429561#M14339</guid>
      <dc:creator>demheld</dc:creator>
      <dc:date>2015-07-23T16:09:13Z</dc:date>
    </item>
  </channel>
</rss>

