<?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: DEVKIT-ZVL128. LIN Bootloader Master-node, stuck at Clock_init()</title>
    <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765675#M15311</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Radek,&lt;/P&gt;&lt;P&gt;Many thanks for your kindness reply.&lt;/P&gt;&lt;P&gt;But I think it is good to&amp;nbsp;mounting the&amp;nbsp;same function in FreeMASTER.&lt;/P&gt;&lt;P&gt;I hope to improve the connection regarding FreeMASTER with &lt;SPAN&gt;DEVKIT-ZVL128&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp;in near version(4.0).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Best wishes,&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt; ko ik&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 28 Mar 2020 02:37:36 GMT</pubDate>
    <dc:creator>ycage0123</dc:creator>
    <dc:date>2020-03-28T02:37:36Z</dc:date>
    <item>
      <title>DEVKIT-ZVL128. LIN Bootloader Master-node, stuck at Clock_init()</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765667#M15303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I run "S12Z_LIN_MagniVBootloader_Translator" of AN5389SW on DEVKIT-ZVL128,&amp;nbsp;&lt;/P&gt;&lt;P&gt;PC(program counter) seems to be stuck at Clock_init(CLK_32_MHZ).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void main(void) {&lt;BR /&gt; unsigned char dataCounter,phraseCounter;&lt;BR /&gt; CPMUVREGCTL_VREG5VEN = 1; /* 5v regulator */&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Clock_init(CLK_32_MHZ); // Never return here.&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt; SCI1_init(32000000,19200); /* SCI1 is linked to PC communication */&lt;BR /&gt; MODRR0_SCI1RR = 1; /* TX ROUTED TO PT5 (white)/ RX ROUTED TO PT4(green) */&lt;BR /&gt; LIN_init();&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in Clock.c,&amp;nbsp;&lt;/P&gt;&lt;P&gt;void Clock_init(unsigned char bus_clk){&lt;/P&gt;&lt;P&gt;CPMUOSC_OSCE = 0; /* Disable external oscillator */&lt;/P&gt;&lt;P&gt;if(bus_clk==CLK_8_MHZ){&lt;BR /&gt; //CPMUREFDIV_REFDIV = 3;&lt;BR /&gt; CPMUREFDIV_REFFRQ = 0;&lt;BR /&gt; CPMUSYNR_SYNDIV = 15;&lt;BR /&gt; CPMUSYNR_VCOFRQ = 1;&lt;BR /&gt; CPMUPOSTDIV_POSTDIV = 1;&lt;BR /&gt; }&lt;BR /&gt; else if(bus_clk == CLK_12_5_MHZ){&lt;BR /&gt; CPMUREFDIV_REFDIV = 3;&lt;BR /&gt; CPMUREFDIV_REFFRQ = 0;&lt;BR /&gt; CPMUSYNR_SYNDIV = 24;&lt;BR /&gt; CPMUSYNR_VCOFRQ = 1;&lt;BR /&gt; CPMUPOSTDIV_POSTDIV = 1;&lt;BR /&gt; }&lt;BR /&gt; else if(bus_clk == CLK_24_MHZ){&lt;BR /&gt; //CPMUREFDIV_REFDIV = 3;&lt;BR /&gt; CPMUREFDIV_REFFRQ = 0;&lt;BR /&gt; CPMUSYNR_SYNDIV = 47;&lt;BR /&gt; CPMUSYNR_VCOFRQ = 1;&lt;BR /&gt; CPMUPOSTDIV_POSTDIV = 1;&lt;BR /&gt; }&lt;BR /&gt; else{&lt;BR /&gt; //CPMUREFDIV_REFDIV = 3;&lt;BR /&gt; CPMUREFDIV_REFFRQ = 0;&lt;BR /&gt; CPMUSYNR_SYNDIV = 31;&lt;BR /&gt; CPMUSYNR_VCOFRQ = 1;&lt;BR /&gt; CPMUPOSTDIV_POSTDIV = 0;&lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;while(CPMUIFLG_LOCK==0){} // Never return here.&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt; CPMURFLG = 0x60; /* Clear PORF and LVRF */&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CPMUIFLG_LOCK seems not to be changed to "1".&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question #1)&amp;nbsp;&lt;/P&gt;&lt;P&gt;- I did not changed any strap option on the EVM board since uppack.&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Do I need to change some strap to make the EVM board work as LIN Master.&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Why clock is not locked, please let me know the reason.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2018 11:03:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765667#M15303</guid>
      <dc:creator>churyjeong</dc:creator>
      <dc:date>2018-01-29T11:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: DEVKIT-ZVL128. LIN Bootloader Master-node, stuck at Clock_init()</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765668#M15304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tested S12ZVL128_LIN_bootloader (LIN Slave Node) with DEVKIT-ZVL128 EVM.&amp;nbsp;&lt;/P&gt;&lt;P&gt;And same clock configuration issue occurred too.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess, "LIN Bootloader SW" for S12Z seems to be out-dated, or it did NOT match with the latest HW board.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Please revise "LIN Bootloader SW" for the latest HW board and release it.&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's same error with Master Node.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void PLL_Init(void)&lt;BR /&gt;{ &lt;BR /&gt;// CPMUCLKS_PLLSEL = 0x1; // FBUS = FPLL/2. FBUS = 32MHz, &lt;BR /&gt;// &lt;BR /&gt;//#if OSCILLATOR_FREQUENCY == 4&lt;BR /&gt;// CPMUREFDIV_REFDIV = 0x0; // FREF = FOSC/(REFDIV+1) = 4/(0+1) = 4MHZ&lt;BR /&gt;//#elif OSCILLATOR_FREQUENCY == 8&lt;BR /&gt;// CPMUREFDIV_REFDIV = 0x1; // FREF = FOSC/(REFDIV+1) = 8/(1+1) = 4MHZ&lt;BR /&gt;//#elif OSCILLATOR_FREQUENCY == 12&lt;BR /&gt;// CPMUREFDIV_REFDIV = 0x2; // FREF = FOSC/(REFDIV+1) = 12/(2+1) = 4MHZ&lt;BR /&gt;//#elif OSCILLATOR_FREQUENCY == 16&lt;BR /&gt;// CPMUREFDIV_REFDIV = 0x3; // FREF = FOSC/(REFDIV+1) = 16/(3+1) = 4MHZ&lt;BR /&gt;//#else&lt;BR /&gt;// #error Non-Supported Oscillator Frequency Selected&lt;BR /&gt;//#endif&lt;BR /&gt;// &lt;BR /&gt;// CPMUREFDIV_REFFRQ = 0x1; // Reference clock between 2MHZ and 6MHZ. &lt;BR /&gt;// CPMUSYNR_SYNDIV = 7; // FVCO = 2xFREFx(SYNDIV+1) = FVCO = 2x4x(7+1) = 64MHZ &lt;BR /&gt;// CPMUSYNR_VCOFRQ = 0x1; // FVCO is between 48MHZ and 80MHZ &lt;BR /&gt;// CPMUPOSTDIV_POSTDIV = 0x0; // FPLL = FVCO/(POSTDIV+1). FPLL = 64MHZ/(0+1) FPLL = 64MHz &lt;BR /&gt;// CPMUOSC_OSCE = 0x1; // External oscillator enable. FREF = FOSC/(REFDIV+1) &lt;BR /&gt;// &lt;BR /&gt;// while(!CPMUIFLG_LOCK){} // Wait for LOCK. &lt;BR /&gt;// &lt;BR /&gt;// CPMUIFLG = 0xFF; // Clear CPMU flags &lt;BR /&gt; &lt;BR /&gt; /* Wait for stable supply after power up */&lt;BR /&gt; //while (GDUF_GLVLSF)&lt;BR /&gt; //GDUF_GLVLSF = 1;&lt;/P&gt;&lt;P&gt;CPMUOSC_OSCE = 0; /* Disable external oscillator */&lt;BR /&gt; &lt;BR /&gt; //CPMUREFDIV_REFDIV = 3;&lt;BR /&gt; CPMUREFDIV_REFFRQ = 0;&lt;BR /&gt; CPMUSYNR_SYNDIV = 31;&lt;BR /&gt; CPMUSYNR_VCOFRQ = 1;&lt;BR /&gt; CPMUPOSTDIV_POSTDIV = 0;&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; //CPMUREFDIV_REFDIV = 3;&lt;BR /&gt; &lt;BR /&gt; while(CPMUIFLG_LOCK==0){}&amp;nbsp;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt; // Never get out of here.&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; CPMURFLG = 0x60; /* Clear PORF and LVRF */&lt;BR /&gt; &lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2018 11:13:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765668#M15304</guid>
      <dc:creator>churyjeong</dc:creator>
      <dc:date>2018-01-30T11:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: DEVKIT-ZVL128. LIN Bootloader Master-node, stuck at Clock_init()</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765669#M15305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Chury,&lt;/P&gt;&lt;P&gt;I suppose that this will be not problem in MCU and code, but rather in debugger.&lt;/P&gt;&lt;P&gt;You probably use OSBDM interface on board. Correct?&lt;/P&gt;&lt;P&gt;When we change bus clock close to the maximum value, the BDM connection may be sometimes lost.&lt;/P&gt;&lt;P&gt;I would like to recommend change BDM clock to 1MHz (from IRC1M clock source).&lt;/P&gt;&lt;P&gt;In debug configuration, go to Target settings-Edit and Uncheck “Use Bus Clock as Debug Controller(SIBDC) Clock Source {default=Checked}”.&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/33539iE67F32E57ED43673/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/33458i4C48409F55E45E31/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This should help. However, the loading/debugging will be a bit slower.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps you.&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Radek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2018 12:16:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765669#M15305</guid>
      <dc:creator>RadekS</dc:creator>
      <dc:date>2018-01-30T12:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: DEVKIT-ZVL128. LIN Bootloader Master-node, stuck at Clock_init()</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765670#M15306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Radek.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just realized S12Z_LIN_MagniVBootloader_Translator SW has not "OS BDM" debugger.&amp;nbsp;&lt;/P&gt;&lt;P&gt;(I am not familiar with CodeWarrior too.)&amp;nbsp;&lt;/P&gt;&lt;P&gt;It has only "PnE U-MultiLink" like the picture below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="S12Z_LIN_MagniVBootloader_Debugger_setting.JPG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/34527i5543094CD8C1D9BE/image-size/large?v=v2&amp;amp;px=999" role="button" title="S12Z_LIN_MagniVBootloader_Debugger_setting.JPG" alt="S12Z_LIN_MagniVBootloader_Debugger_setting.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your picture, there are 3 debugger settings, but in my picture, it has only one debugger setting.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you let me know how to add "OS BDM" debugger into this project ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or if there's a helpful documents of adding&amp;nbsp; new debugger, please help me to find the document.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Chury&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2018 08:31:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765670#M15306</guid>
      <dc:creator>churyjeong</dc:creator>
      <dc:date>2018-01-31T08:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: DEVKIT-ZVL128. LIN Bootloader Master-node, stuck at Clock_init()</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765671#M15307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chury,&lt;/P&gt;&lt;P&gt;No problem with debugger options. My screenshots were captured from a different project.&lt;/P&gt;&lt;P&gt;In fact, the PnE U-MultiLink and OSBDM &amp;nbsp;interfaces use the same PC software driver from P&amp;amp;E. So, you may use this configuration for both Multilink Universal or OSBDM interface types.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, new debugger configuration may be created by right-clicking on CodeWarrior and selection “New” in the context menu.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper" image-alt="3.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/34740iA360329F1BC6286D/image-size/large?v=v2&amp;amp;px=999" role="button" title="3.png" alt="3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;There is also “New…” button for creating new target settings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Radek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2018 12:11:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765671#M15307</guid>
      <dc:creator>RadekS</dc:creator>
      <dc:date>2018-01-31T12:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: DEVKIT-ZVL128. LIN Bootloader Master-node, stuck at Clock_init()</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765672#M15308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Radek.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's a very good comment. So far I didn't understand the operation of debugger fully, I'll ask further in other thread after learning deep further.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Chury&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2018 10:39:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765672#M15308</guid>
      <dc:creator>churyjeong</dc:creator>
      <dc:date>2018-02-05T10:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: DEVKIT-ZVL128. LIN Bootloader Master-node, stuck at Clock_init()</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765673#M15309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;Radek,&lt;/P&gt;&lt;P&gt;It is great Uncheck “Use Bus Clock as Debug Controller(SIBDC) Clock Source {default=Checked}”in CodeWarrior.&lt;/P&gt;&lt;P&gt;Anyway can I do the same setting Freemaster, If I use DEVKIT-ZVL128 at 32MHz bus clock?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Mar 2020 06:21:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765673#M15309</guid>
      <dc:creator>ycage0123</dc:creator>
      <dc:date>2020-03-23T06:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: DEVKIT-ZVL128. LIN Bootloader Master-node, stuck at Clock_init()</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765674#M15310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ko ik,&lt;/P&gt;&lt;P&gt;Interesting question.&lt;/P&gt;&lt;P&gt;Currently, FreeMASTER (2.0 nor 3.0) doesn’t have such features. The FreeMASTER use a different version of PEmicro library and we cannot see such an option in PEmicro library API.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In fact, I think that the settings for 1MHz IRC as BDM clock is useful only in case when we are stepping through the PLL init code. I didn’t hear about any other typical place where the BDM interface may lose connection with MCU (of course, except resets). If I place a breakpoint after PLL setup and let code run during PLL init, I typically do not detect any issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We typically use FreeMASTER for debugging run-time – The FreeMASTER doesn’t stop CPU, it reads registers/memory on the background.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps you.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Radek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Mar 2020 10:32:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765674#M15310</guid>
      <dc:creator>RadekS</dc:creator>
      <dc:date>2020-03-27T10:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: DEVKIT-ZVL128. LIN Bootloader Master-node, stuck at Clock_init()</title>
      <link>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765675#M15311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Radek,&lt;/P&gt;&lt;P&gt;Many thanks for your kindness reply.&lt;/P&gt;&lt;P&gt;But I think it is good to&amp;nbsp;mounting the&amp;nbsp;same function in FreeMASTER.&lt;/P&gt;&lt;P&gt;I hope to improve the connection regarding FreeMASTER with &lt;SPAN&gt;DEVKIT-ZVL128&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp;in near version(4.0).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Best wishes,&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt; ko ik&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Mar 2020 02:37:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S12-MagniV-Microcontrollers/DEVKIT-ZVL128-LIN-Bootloader-Master-node-stuck-at-Clock-init/m-p/765675#M15311</guid>
      <dc:creator>ycage0123</dc:creator>
      <dc:date>2020-03-28T02:37:36Z</dc:date>
    </item>
  </channel>
</rss>

