<?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: mingw32-make error problem in Processor Expert Software</title>
    <link>https://community.nxp.com/t5/Processor-Expert-Software/mingw32-make-error-problem/m-p/333520#M2540</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Amreen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you including the necessary header files inside of HWApi.h? The structure you want to define includes no-standard types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g. &lt;STRONG&gt;LDD_TDeviceData&lt;/STRONG&gt; type is declared in &lt;EM&gt;PE_Types.h&lt;/EM&gt; (I assume you use Processor Expert).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you declare it in &lt;EM&gt;Events.c&lt;/EM&gt;, this file includes &lt;EM&gt;Events.h&lt;/EM&gt;, which respectively calls &lt;EM&gt;PE_Types.h&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Regards!,&lt;BR /&gt;Jorge Gonzalez&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>Mon, 04 Aug 2014 18:04:42 GMT</pubDate>
    <dc:creator>Jorge_Gonzalez</dc:creator>
    <dc:date>2014-08-04T18:04:42Z</dc:date>
    <item>
      <title>mingw32-make error problem</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/mingw32-make-error-problem/m-p/333519#M2539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working with KL25Z128VLH4 on CW10.3.&lt;/P&gt;&lt;P&gt;I am using UART1 and UART0 in this controller.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am defining a structure for UART in my HWApi.h file.&lt;/P&gt;&lt;P&gt;typedef struct&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; LDD_TDeviceData* DeviceDataPrv1;&lt;/P&gt;&lt;P&gt;&amp;nbsp; volatile uint8_t isSent; /* this will be set to 1 once the block has been sent */&lt;/P&gt;&lt;P&gt;&amp;nbsp; uint8_t rxChar; /* single character buffer for receiving chars */&lt;/P&gt;&lt;P&gt;&amp;nbsp; uint8_t (*rxPutFct)(uint8_t); /* callback to put received character into buffer */&lt;/P&gt;&lt;P&gt;} UART_Desc;&lt;/P&gt;&lt;P&gt;UART_Desc deviceData_UART0,deviceData_UART1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using "deviceData_UART0" for UART0 and "deviceData_UART1" for UART1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in Event.c file I have to use this structure.&lt;/P&gt;&lt;P&gt;But when I included HWApi.h file in Event.c file an error occurred as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;STRONG&gt;mingw32-make: *** [VTS_Code_64Pin.elf] Error 1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I am not getting what is the meaning of this type of error?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I copied(redefined ) above structure in Event.c as it is,without including HWApi.h file it works.&lt;/P&gt;&lt;P&gt;Both files are located in local "sources" folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Amreen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2014 13:16:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/mingw32-make-error-problem/m-p/333519#M2539</guid>
      <dc:creator>Embionics</dc:creator>
      <dc:date>2014-08-04T13:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: mingw32-make error problem</title>
      <link>https://community.nxp.com/t5/Processor-Expert-Software/mingw32-make-error-problem/m-p/333520#M2540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Amreen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you including the necessary header files inside of HWApi.h? The structure you want to define includes no-standard types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g. &lt;STRONG&gt;LDD_TDeviceData&lt;/STRONG&gt; type is declared in &lt;EM&gt;PE_Types.h&lt;/EM&gt; (I assume you use Processor Expert).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you declare it in &lt;EM&gt;Events.c&lt;/EM&gt;, this file includes &lt;EM&gt;Events.h&lt;/EM&gt;, which respectively calls &lt;EM&gt;PE_Types.h&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Regards!,&lt;BR /&gt;Jorge Gonzalez&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>Mon, 04 Aug 2014 18:04:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Processor-Expert-Software/mingw32-make-error-problem/m-p/333520#M2540</guid>
      <dc:creator>Jorge_Gonzalez</dc:creator>
      <dc:date>2014-08-04T18:04:42Z</dc:date>
    </item>
  </channel>
</rss>

