<?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>Model-Based Design Toolbox (MBDT)のトピックRe: About the ADC_ModuleCalib() function in the Dual motor demo board MPC5643L C-code project</title>
    <link>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684218#M862</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel, Eden Li,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I have contacted my colleagues who are owners of the example code for "Dual 3-phase Permanent Magnet Synchronous Motor (PMSM) Motor Control Development Kit for the MPC564xL". They will look on your question as soon as possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Petr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Jul 2017 06:29:31 GMT</pubDate>
    <dc:creator>petrfajmon-b173</dc:creator>
    <dc:date>2017-07-12T06:29:31Z</dc:date>
    <item>
      <title>About the ADC_ModuleCalib() function in the Dual motor demo board MPC5643L C-code project</title>
      <link>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684213#M857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/dumitru-daniel.popa"&gt;dumitru-daniel.popa&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Firstly, I'am sorry to bother you again,Because i posted my &amp;nbsp;question to another &amp;nbsp;Community named MPC5XXX,the link:&lt;A href="https://community.nxp.com/thread/454846"&gt;The question about the S32 C-code project of dual motor demo board for MPC5643L&lt;/A&gt;&amp;nbsp;,but Nobody reply to me,so whether the Web address is right about the dual motor demo board C-code?&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Daniel,&lt;STRONG&gt;Can you give me the link abou the Community?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; BTY,&lt;STRONG&gt;Can&amp;nbsp;you help me slove my follow question&lt;/STRONG&gt;,shown as below?&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff6600;"&gt;&lt;STRONG&gt;A C-code segment in the main.c shown as below:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;tBool ADC_ModuleCalib(pmsmDrive_t *ptr)&lt;BR /&gt;{&lt;BR /&gt; static tFloat fltFiltOutput;&lt;/P&gt;&lt;P&gt;if (!(ptr-&amp;gt;adc.flag.B.calibInitDone))&lt;BR /&gt; {&lt;BR /&gt; ptr-&amp;gt;&lt;SPAN style="color: #339966;"&gt;&lt;STRONG&gt;adc.calibCnt&lt;/STRONG&gt;&lt;/SPAN&gt;r =&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt; 4096&lt;/STRONG&gt;&lt;/SPAN&gt;; // &lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;2^(8 + 4)&lt;/STRONG&gt; &lt;/SPAN&gt;order to accommodate settling time of the filter&lt;/P&gt;&lt;P&gt;ptr-&amp;gt;adc.measured.fltPhA.filt = 0.0F;&lt;BR /&gt; ptr-&amp;gt;adc.measured.fltPhB.filt = 0.0F;&lt;BR /&gt; ptr-&amp;gt;adc.measured.fltPhC.filt = 0.0F;&lt;BR /&gt; ptr-&amp;gt;adc.measured.fltUdcb.filt = 0.0F;&lt;/P&gt;&lt;P&gt;ptr-&amp;gt;adc.flag.B.calibDone = 0;&lt;BR /&gt; ptr-&amp;gt;adc.flag.B.calibInitDone = 1;// initial setup for DC offset calibration done&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;if (!(ptr-&amp;gt;adc.flag.B.calibDone))&lt;BR /&gt; {&lt;BR /&gt; /* --------------------------------------------------------------&lt;BR /&gt; * &lt;SPAN style="color: #00ff00;"&gt;&lt;STRONG&gt;&lt;EM&gt;Phase A - DC offset data filtering using MA recursive filter&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt; * filt= filtered value&lt;BR /&gt; * ------------------------------------------------------------ */&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;PART A：&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #008000;"&gt;&lt;SPAN style="color: #3366ff;"&gt;ptr-&amp;gt;adc.measured.fltPhA.fil&lt;/SPAN&gt;t&lt;/SPAN&gt; =&lt;STRONG&gt; MLIB_Add&lt;/STRONG&gt;(ptr-&amp;gt;adc.measured.fltPhA.filt , ptr-&amp;gt;adc.measured.fltPhA.raw);&lt;BR /&gt; &lt;STRONG&gt;&lt;EM&gt;fltFiltOutput&lt;/EM&gt;&lt;/STRONG&gt; = MLIB_Div(&lt;SPAN style="color: #3366ff;"&gt;ptr-&amp;gt;adc.measured.fltPhA.filt&lt;/SPAN&gt;,ptr-&amp;gt;adc.param.&lt;SPAN style="color: #ff00ff;"&gt;&lt;STRONG&gt;u16CalibSamples&lt;/STRONG&gt;&lt;/SPAN&gt;);&lt;BR /&gt; &lt;SPAN style="color: #3366ff;"&gt;ptr-&amp;gt;adc.measured.fltPhA.filt&lt;/SPAN&gt; = MLIB_Sub(&lt;SPAN style="color: #3366ff;"&gt;ptr-&amp;gt;adc.measured.fltPhA.filt&lt;/SPAN&gt;,&lt;STRONG&gt;&lt;EM&gt;fltFiltOutput&lt;/EM&gt;&lt;/STRONG&gt;);&lt;BR /&gt; ptr-&amp;gt;adc.offset[ptr-&amp;gt;svmSector].fltPhA = &lt;EM&gt;&lt;STRONG&gt;fltFiltOutput&lt;/STRONG&gt;&lt;/EM&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;, , , ,,,,,,,,,,,,,,,,,,,,,,,,,,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ((--&lt;SPAN style="color: #339966;"&gt;&lt;STRONG&gt;ptr-&amp;gt;adc.calibCnt&lt;/STRONG&gt;&lt;/SPAN&gt;r)&amp;lt;=0)&lt;BR /&gt; {&lt;BR /&gt; ptr-&amp;gt;adc.flag.B.calibDone = 1; // end of DC offset calibration&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;return (ptr-&amp;gt;adc.flag.B.calibDone);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 30px;"&gt;&lt;STRONG&gt;Analysis:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 15px;"&gt;&amp;nbsp; According to the C-code segment,we can conclude that in the&amp;nbsp;&lt;SPAN&gt;ADC_ModuleCalib() function ,will execute 4096 cycles in the&amp;nbsp;ADC_ModuleCalib() funtion, then jump out the&amp;nbsp;ADC_ModuleCalib().&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff; font-size: 15px;"&gt;&lt;STRONG&gt;&lt;SPAN style="color: #000000;"&gt;The Value of&lt;/SPAN&gt; u16CalibSamples &lt;SPAN style="color: #000000;"&gt;is defined 256 in the&amp;nbsp;stateInit().&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 15px;"&gt;&lt;STRONG&gt;The reference AN4518:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 15px;"&gt;&lt;STRONG&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_34.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/25724i9BE897AA89228355/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_34.png" alt="pastedImage_34.png" /&gt;&lt;/span&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 15px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 30px;"&gt;&lt;STRONG&gt;question:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-size: 22px;"&gt;&lt;STRONG&gt;1#&lt;/STRONG&gt;&lt;/SPAN&gt;,&lt;STRONG&gt;Why we assign the 4096 to&amp;nbsp;ptr-&amp;gt;adc.calibCntr,rather than &amp;nbsp;ptr-&amp;gt;adc.calibCntr=&lt;SPAN style="font-weight: normal;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #ff00ff;"&gt;&lt;STRONG&gt;u16CalibSamples&lt;/STRONG&gt;&lt;/SPAN&gt;?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I thought we should sum the&amp;nbsp;&lt;SPAN style="font-weight: normal;"&gt;ptr-&amp;gt;adc.measured.fltPhA.raw,and then averaged the values,that is the sum divide&amp;nbsp;&lt;SPAN style="color: #ff00ff;"&gt;u16CalibSamples&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-size: 22px;"&gt;&lt;STRONG&gt;2#,I seemly not cleary with the&amp;nbsp;&lt;SPAN style="color: #00ff00; font-size: 15px;"&gt;&lt;STRONG&gt;&lt;EM&gt;Phase A - DC offset data filtering using MA recursive filter?&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 22px;"&gt;&lt;EM&gt;and the theory is，that is How to comprehend&amp;nbsp;the the four lines C-code in the&amp;nbsp;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;PART A ?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-size: 22px;"&gt;&lt;STRONG style="color: #00ff00; font-size: 15px;"&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2017 08:12:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684213#M857</guid>
      <dc:creator>edenli</dc:creator>
      <dc:date>2017-07-05T08:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: About the ADC_ModuleCalib() function in the Dual motor demo board MPC5643L C-code project</title>
      <link>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684214#M858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/edenli"&gt;edenli&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The MPC5xxx Community you asked the question is OK. Please allow some time until peoples will figure it out - that is now a trivial piece of code, therefore a specialist opinion in such matter will be needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't answer all the question because i don't know that sw - i can only look at it and read it - but behind that i do not know what the designer though about it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding #1 and #2&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;STRONG style="color: #ff0000;"&gt;&lt;SPAN style="border: 0px;"&gt;(1)&lt;/SPAN&gt;&amp;nbsp;Why the c-code need subtract the&amp;nbsp;&lt;SPAN style="border: 0px;"&gt;0.5F?&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;STRONG style="border: 0px; color: #ff0000;"&gt;(2)&lt;SPAN style="border: 0px;"&gt;&amp;nbsp;why the c- code need mulitiply the constant&amp;nbsp;&lt;SPAN style="border: 0px;"&gt;2&lt;/SPAN&gt;?&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;in think is a sort of round up to floor followed by a scalling (not sure)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding #3&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000; background-color: #ffffff; border: 0px; font-weight: bold;"&gt;(3) the initial value of the&amp;nbsp;u16CalibSamples is 0, and if&amp;nbsp;&lt;STRONG style="border: 0px; font-weight: bold;"&gt;&lt;EM style="border: 0px; font-weight: inherit;"&gt;adc.measured.fltPhA.filt divide the&amp;nbsp;&lt;STRONG style="color: #ff0000; border: 0px; font-weight: bold;"&gt;u16CalibSamples,the ansower is INF? that is right?&lt;/STRONG&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;No, there is no division by 0 since there is a function&amp;nbsp;&lt;STRONG&gt;stateInit()&lt;/STRONG&gt; that initialize the&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;&lt;EM&gt;ptr-&amp;gt;adc.param.u16CalibSamples = 256; // number of samples = 2^u16CalibSamples = 2^8 = 256&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;prior to&amp;nbsp;calling the &lt;STRONG style="background-color: #ffffff; color: #51626f;"&gt;ADC_ModuleCalib()&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2017 09:01:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684214#M858</guid>
      <dc:creator>Daniel_Popa</dc:creator>
      <dc:date>2017-07-05T09:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: About the ADC_ModuleCalib() function in the Dual motor demo board MPC5643L C-code project</title>
      <link>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684215#M859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK,Thank you for your reply!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2017 09:11:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684215#M859</guid>
      <dc:creator>edenli</dc:creator>
      <dc:date>2017-07-05T09:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: About the ADC_ModuleCalib() function in the Dual motor demo board MPC5643L C-code project</title>
      <link>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684216#M860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;I am sorry to bother you again!:smileysad:&lt;/P&gt;&lt;P&gt;My questions have posted Out in the &amp;nbsp;MPC5XXX Community,But there is &amp;nbsp;nobody replying my question.Can you give some proposal to solve it ?or Can you recommend some one to help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards!&lt;/P&gt;&lt;P&gt;Eden Li&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2017 09:29:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684216#M860</guid>
      <dc:creator>edenli</dc:creator>
      <dc:date>2017-07-07T09:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: About the ADC_ModuleCalib() function in the Dual motor demo board MPC5643L C-code project</title>
      <link>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684217#M861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/petrfajmon-b17364"&gt;petrfajmon-b17364&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Who's the person responsible for this code? Looks like nobody gave any feedback on MPC5xxx Community. Can you ask someone familiar with this topic to have a look and advice.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2017 12:30:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684217#M861</guid>
      <dc:creator>Daniel_Popa</dc:creator>
      <dc:date>2017-07-11T12:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: About the ADC_ModuleCalib() function in the Dual motor demo board MPC5643L C-code project</title>
      <link>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684218#M862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel, Eden Li,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I have contacted my colleagues who are owners of the example code for "Dual 3-phase Permanent Magnet Synchronous Motor (PMSM) Motor Control Development Kit for the MPC564xL". They will look on your question as soon as possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Petr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 06:29:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684218#M862</guid>
      <dc:creator>petrfajmon-b173</dc:creator>
      <dc:date>2017-07-12T06:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: About the ADC_ModuleCalib() function in the Dual motor demo board MPC5643L C-code project</title>
      <link>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684219#M863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eden Li,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; your questions were&amp;nbsp;answered by Marek Stulrajter here:&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/454846"&gt;The question about the S32 C-code project of dual motor demo board for MPC5643L&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Petr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jul 2017 08:10:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Model-Based-Design-Toolbox-MBDT/About-the-ADC-ModuleCalib-function-in-the-Dual-motor-demo-board/m-p/684219#M863</guid>
      <dc:creator>petrfajmon-b173</dc:creator>
      <dc:date>2017-07-14T08:10:57Z</dc:date>
    </item>
  </channel>
</rss>

