<?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: create library function in CodeWarrior for MCU</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/create-library-function/m-p/683280#M13992</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not a video, but something to read: &lt;A class="link-titled" href="https://mcuoneclipse.com/2012/10/08/a-library-with-arm-gcc-and-eclipse/" title="https://mcuoneclipse.com/2012/10/08/a-library-with-arm-gcc-and-eclipse/"&gt;A Library with ARM gcc and Eclipse | MCU on Eclipse&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Same principle applies for DSC too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 09 Jul 2017 12:49:21 GMT</pubDate>
    <dc:creator>BlackNight</dc:creator>
    <dc:date>2017-07-09T12:49:21Z</dc:date>
    <item>
      <title>create library function</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/create-library-function/m-p/683277#M13989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;     Excuse me,  My MCU is 56f84789, and my version is codewarrior 10.7, how do I create  library functions  in codewarrior 10.7? and how can I call my library functions ?can you tell me in detail? thank you very much.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    Best regards.&lt;/P&gt;&lt;P&gt;    Chuhua guo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Jul 2017 05:57:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/create-library-function/m-p/683277#M13989</guid>
      <dc:creator>guochunhua</dc:creator>
      <dc:date>2017-07-04T05:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: create library function</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/create-library-function/m-p/683278#M13990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chuhua,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. In CW 10.7, we can create library with wizard, just select "library" for project type.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/24564i3977D894DEAD5B57/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. after creating the lib project, write your functions in source code and also declare it in header file (.h)&lt;/P&gt;&lt;P&gt;3. copy the generated .lib and .h to user project folder.&lt;/P&gt;&lt;P&gt;4. add the lib path to user project "properties", "settings", "DSC Linker", "input", "Additional Libraries"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please follow above steps and see how it works.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Jennie Zhang&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2017 02:24:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/create-library-function/m-p/683278#M13990</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2017-07-05T02:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: create library function</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/create-library-function/m-p/683279#M13991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Jennie&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;I have created a lib project, and wrote my lib file as follows&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/24765iECA7D28A83638490/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;but there has no header file, I can not declare it in header file(.h),&lt;SPAN style="background-color: #ffffff;"&gt;&amp;nbsp;how can I do ? can you give me a video which &amp;nbsp;show me how to create&amp;nbsp; library functions and how to call it? thank you very much.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Best regards.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Chunhua Guo&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Jul 2017 11:08:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/create-library-function/m-p/683279#M13991</guid>
      <dc:creator>guochunhua</dc:creator>
      <dc:date>2017-07-09T11:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: create library function</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/create-library-function/m-p/683280#M13992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not a video, but something to read: &lt;A class="link-titled" href="https://mcuoneclipse.com/2012/10/08/a-library-with-arm-gcc-and-eclipse/" title="https://mcuoneclipse.com/2012/10/08/a-library-with-arm-gcc-and-eclipse/"&gt;A Library with ARM gcc and Eclipse | MCU on Eclipse&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Same principle applies for DSC too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Jul 2017 12:49:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/create-library-function/m-p/683280#M13992</guid>
      <dc:creator>BlackNight</dc:creator>
      <dc:date>2017-07-09T12:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: create library function</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/create-library-function/m-p/683281#M13993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chunhua,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached is the video and demo code I made.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Jennie Zhang&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jul 2017 03:34:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/create-library-function/m-p/683281#M13993</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2017-07-14T03:34:25Z</dc:date>
    </item>
  </channel>
</rss>

