<?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>CodeWarrior Development ToolsのトピックRe: Call a function that is at another .C file</title>
    <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Call-a-function-that-is-at-another-C-file/m-p/1476016#M8810</link>
    <description>&lt;P&gt;what ?! Our code is identical.&lt;/P&gt;&lt;P&gt;Anyway I cut and paste it to replace my code, it is the same warning shows me !&lt;/P&gt;</description>
    <pubDate>Fri, 17 Jun 2022 12:29:13 GMT</pubDate>
    <dc:creator>jimwang90</dc:creator>
    <dc:date>2022-06-17T12:29:13Z</dc:date>
    <item>
      <title>Call a function that is at another .C file</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Call-a-function-that-is-at-another-C-file/m-p/1474715#M8797</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I set up a project, have main(), Calibr_M.h and Calibr_M.c file, code as follow, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;when I build it, always has a warning shows up: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Description Resource Path Location Type &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;C1858 Partial implicit parameter declaration main.c /TM800-2022/Sources line 304 C/C++ Problem Description Resource Path Location Type &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;C1440 This is causing previous message 1858 Calibr_M.h /TM800-2022/Project_Headers line 11 C/C++ Problem&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;include "mc9s08pa16.h" &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#include "Calibr_M.h" &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;void main(void)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{ &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Calibration();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;.... &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;* Calibr_M.h * * Created on: Jun 7, 2022 * Author: Jim Wang */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#ifndef CALIBR_M_H_ &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#define CALIBR_M_H_ &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;void Calibration(); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#endif /* CALIBR_M_H_ */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;* Calibr_M.c * * Created on: Jun 7, 2022 * Author: Jim Wang */ &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#include "Calibr_M.h" &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#include &amp;lt;stdio.h&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;void Calibration()&lt;/SPAN&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jun 2022 20:17:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Call-a-function-that-is-at-another-C-file/m-p/1474715#M8797</guid>
      <dc:creator>jimwang90</dc:creator>
      <dc:date>2022-06-15T20:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Call a function that is at another .C file</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Call-a-function-that-is-at-another-C-file/m-p/1475886#M8804</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/202321"&gt;@jimwang90&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please revise below highlight line of code to&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;void Calibration();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZhangJennie_0-1655457656112.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/183729i00849836B10D097B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZhangJennie_0-1655457656112.png" alt="ZhangJennie_0-1655457656112.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please check if this can remove warning&amp;nbsp;&lt;SPAN&gt;C1858 and&amp;nbsp;C1440&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jun Zhang&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2022 09:22:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Call-a-function-that-is-at-another-C-file/m-p/1475886#M8804</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2022-06-17T09:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Call a function that is at another .C file</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Call-a-function-that-is-at-another-C-file/m-p/1476016#M8810</link>
      <description>&lt;P&gt;what ?! Our code is identical.&lt;/P&gt;&lt;P&gt;Anyway I cut and paste it to replace my code, it is the same warning shows me !&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2022 12:29:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Call-a-function-that-is-at-another-C-file/m-p/1476016#M8810</guid>
      <dc:creator>jimwang90</dc:creator>
      <dc:date>2022-06-17T12:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: Call a function that is at another .C file</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Call-a-function-that-is-at-another-C-file/m-p/1476359#M8812</link>
      <description>&lt;P&gt;Because I reproduced your problem on my side：&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZhangJennie_0-1655688862716.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/183824i20CC0F7C1277E4AF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZhangJennie_0-1655688862716.png" alt="ZhangJennie_0-1655688862716.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;After this change, the warning disappears&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZhangJennie_1-1655688957948.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/183825iB131E5460B6CE07D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZhangJennie_1-1655688957948.png" alt="ZhangJennie_1-1655688957948.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;This is the description and tip from help manual&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZhangJennie_2-1655689052575.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/183826i5EEF631480F357E6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZhangJennie_2-1655689052575.png" alt="ZhangJennie_2-1655689052575.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For more, see CodeWarrior help.&lt;/P&gt;
&lt;P&gt;Jun Zhang&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jun 2022 01:37:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Call-a-function-that-is-at-another-C-file/m-p/1476359#M8812</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2022-06-20T01:37:56Z</dc:date>
    </item>
  </channel>
</rss>

