<?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>LPC MicrocontrollersのトピックRe: LPc11u67 Q-Math Functions</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPc11u67-Q-Math-Functions/m-p/1691081#M53531</link>
    <description>&lt;P&gt;The DSP support files and libraries were supplied by ARM last time I checked.&lt;BR /&gt;Some vendors add them to their packages for convenience, but these DSP libs are not vendor-specific.&lt;/P&gt;&lt;P&gt;Like here :&amp;nbsp;&lt;A href="https://github.com/ARM-software/CMSIS-DSP" target="_blank"&gt;https://github.com/ARM-software/CMSIS-DSP&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 24 Jul 2023 06:43:06 GMT</pubDate>
    <dc:creator>frank_m</dc:creator>
    <dc:date>2023-07-24T06:43:06Z</dc:date>
    <item>
      <title>LPc11u67 Q-Math Functions</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPc11u67-Q-Math-Functions/m-p/1690730#M53520</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I would like to implement one small control loop which requires using of Q format multiplication. I would like to know does LPC11U67 will support such Q21 format multiplication to implement below control loop.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Y (k) = 1.691 * Y (k−1) − 0.6913 * Y (k−2) + 2.116 * X( k−1 )− 1.91 * X (k−2)&lt;/P&gt;&lt;P&gt;Where k is a discrete time, X is the sensor value , Y is the output value of the controller.&lt;/P&gt;&lt;P&gt;I didn't found any DSP library supporting files in "LPCOpen 3.03 Keil Iar LPCXpresso 11U68" package. so some one help me is it possible to implement this control loop with #LPC11U67.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H2&gt;&amp;nbsp;&lt;/H2&gt;</description>
      <pubDate>Sat, 22 Jul 2023 15:46:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPc11u67-Q-Math-Functions/m-p/1690730#M53520</guid>
      <dc:creator>Hari_Royal</dc:creator>
      <dc:date>2023-07-22T15:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: LPc11u67 Q-Math Functions</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPc11u67-Q-Math-Functions/m-p/1690893#M53521</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I suppose this is a common problem for IIR filter that the absolute value of a1 may be greater than 1 and less than 2. With a transformation, you can use Q15 or Q31 format to implement it.&lt;/P&gt;
&lt;P&gt;I attach the AN3359.pdf, pls refer to section 3.2.2 How to Implement the IIR Filter&lt;/P&gt;
&lt;P&gt;Hope it can help you&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jul 2023 02:16:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPc11u67-Q-Math-Functions/m-p/1690893#M53521</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2023-07-24T02:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: LPc11u67 Q-Math Functions</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPc11u67-Q-Math-Functions/m-p/1691081#M53531</link>
      <description>&lt;P&gt;The DSP support files and libraries were supplied by ARM last time I checked.&lt;BR /&gt;Some vendors add them to their packages for convenience, but these DSP libs are not vendor-specific.&lt;/P&gt;&lt;P&gt;Like here :&amp;nbsp;&lt;A href="https://github.com/ARM-software/CMSIS-DSP" target="_blank"&gt;https://github.com/ARM-software/CMSIS-DSP&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jul 2023 06:43:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPc11u67-Q-Math-Functions/m-p/1691081#M53531</guid>
      <dc:creator>frank_m</dc:creator>
      <dc:date>2023-07-24T06:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: LPc11u67 Q-Math Functions</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPc11u67-Q-Math-Functions/m-p/1691707#M53558</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You can use RTCESL tools to do IIR, you can download the library from the link:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.nxp.com/design/software/embedded-software/real-time-control-embedded-software-motor-control-and-power-conversion-libraries:RTCESL" target="_blank"&gt;https://www.nxp.com/design/software/embedded-software/real-time-control-embedded-software-motor-control-and-power-conversion-libraries:RTCESL&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope it can help you&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2023 02:03:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPc11u67-Q-Math-Functions/m-p/1691707#M53558</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2023-07-25T02:03:30Z</dc:date>
    </item>
  </channel>
</rss>

