<?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>S12 / MagniV MicrocontrollersのトピックRe: S12ZVL32 LIN stack tool is conflict with PE tool</title>
    <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12ZVL32-LIN-stack-tool-is-conflict-with-PE-tool/m-p/992386#M16912</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dashuang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was facing the same issue but I found one solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/519260"&gt;LIN Stack Problem with Processor Expert Mode&lt;/A&gt; here I added my one sample code and needed changes in the screenshot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes:&lt;/P&gt;&lt;P&gt;1. If you are using baud rate other than 9600 then enable autobaud support and add Vtim0ch3 interrupt.&lt;/P&gt;&lt;P&gt;2. Add autobaud lib files from \bsp\AUTOBAUD folder.&lt;/P&gt;&lt;P&gt;3. In Vtim0ch3 ISR add AutobaudTimerValEval(); like&lt;/P&gt;&lt;P&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/98613i55F15618124D7B71/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;/P&gt;&lt;P&gt;Mark helpful if it helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 22 Dec 2019 14:34:49 GMT</pubDate>
    <dc:creator>chaitanya_kalyani</dc:creator>
    <dc:date>2019-12-22T14:34:49Z</dc:date>
    <item>
      <title>S12ZVL32 LIN stack tool is conflict with PE tool</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12ZVL32-LIN-stack-tool-is-conflict-with-PE-tool/m-p/992385#M16911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;1，Devolopment tool:&lt;/P&gt;&lt;P&gt;IDE:Codewarrior CW11;&lt;/P&gt;&lt;P&gt;LIN stack version:&amp;nbsp;FSL_LIN_2.x_STACK_Package_4.5.9&lt;/P&gt;&lt;P&gt;MCU:S12ZVL32;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2，Problem 1:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; I using ProcessorExpert to generate the lower level driver. After I import LIN stack and LIN configuration, the compiler report error like this:1) ISR redifined error.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; I check the cause: In file "lin_isr.h" have code:&amp;nbsp; &amp;nbsp; &amp;nbsp;#define ISR(ivn, x) interrupt ivn void x(void);&amp;nbsp; meanwhile, In file "PE_types.h" which is generated by PE also have code like this:&amp;nbsp;#define ISR(x) __interrupt void x(void). The two defined have same function&amp;nbsp;name but have different parameter number.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;The LIN stack and PE code all are auto generated, how can I fixed the problem without modify the autogenerated code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3, Problem 2:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;In file "lin_lld_timesrv.c“， report TIM register like "TSCR1" not define error.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I check the code and&amp;nbsp; find the this file miss micro "_MC9S12ZVL32_H". I think this micro should be auto defined by the LIN configuration tool. In this tool, I select the MCU type but I can't find this micro define.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Nov 2019 14:16:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12ZVL32-LIN-stack-tool-is-conflict-with-PE-tool/m-p/992385#M16911</guid>
      <dc:creator>dashuangshengds</dc:creator>
      <dc:date>2019-11-30T14:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: S12ZVL32 LIN stack tool is conflict with PE tool</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12ZVL32-LIN-stack-tool-is-conflict-with-PE-tool/m-p/992386#M16912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dashuang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was facing the same issue but I found one solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/519260"&gt;LIN Stack Problem with Processor Expert Mode&lt;/A&gt; here I added my one sample code and needed changes in the screenshot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes:&lt;/P&gt;&lt;P&gt;1. If you are using baud rate other than 9600 then enable autobaud support and add Vtim0ch3 interrupt.&lt;/P&gt;&lt;P&gt;2. Add autobaud lib files from \bsp\AUTOBAUD folder.&lt;/P&gt;&lt;P&gt;3. In Vtim0ch3 ISR add AutobaudTimerValEval(); like&lt;/P&gt;&lt;P&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/98613i55F15618124D7B71/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;/P&gt;&lt;P&gt;Mark helpful if it helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Dec 2019 14:34:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12ZVL32-LIN-stack-tool-is-conflict-with-PE-tool/m-p/992386#M16912</guid>
      <dc:creator>chaitanya_kalyani</dc:creator>
      <dc:date>2019-12-22T14:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: S12ZVL32 LIN stack tool is conflict with PE tool</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12ZVL32-LIN-stack-tool-is-conflict-with-PE-tool/m-p/992387#M16913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG class="" style="color: #646464; background-color: #ffffff; border: 0px; font-weight: 200; font-size: 1.286rem; padding: 0px 0px 0px 30px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 18.004px;"&gt;Hi Chaitanya&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Thank&amp;nbsp; you help! I also find another soluton:&amp;nbsp; In vector.c file, I add "extern void SCI0_INT(void); extern TIMchan2_ISR", and modify vector define for SCI0 and timer channle 2.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Dec 2019 09:37:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/S12ZVL32-LIN-stack-tool-is-conflict-with-PE-tool/m-p/992387#M16913</guid>
      <dc:creator>dashuangshengds</dc:creator>
      <dc:date>2019-12-23T09:37:31Z</dc:date>
    </item>
  </channel>
</rss>

