<?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: MCUXpresso SDK 2.7.1, Flexcomm USART configuration doc error in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/MCUXpresso-SDK-2-7-1-Flexcomm-USART-configuration-doc-error/m-p/1065667#M41165</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Andy.&lt;/P&gt;&lt;P&gt;I got feedback from SDK team. This issue will be fixed in next released.&lt;/P&gt;&lt;P&gt;Thanks!&lt;BR /&gt;Jun Zhang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Apr 2020 09:42:33 GMT</pubDate>
    <dc:creator>ZhangJennie</dc:creator>
    <dc:date>2020-04-21T09:42:33Z</dc:date>
    <item>
      <title>MCUXpresso SDK 2.7.1, Flexcomm USART configuration doc error</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/MCUXpresso-SDK-2-7-1-Flexcomm-USART-configuration-doc-error/m-p/1065663#M41161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the peripherals configuration for a Flexcomm USART, under "General Configuration," there are two checkboxes, "Enable RX" and "Enable TX." When you mouse over them, the pop-up description says, somewhat redundantly, "Enable Receiver" and "Enable Transmitter," respectively.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The API reference docs say the same thing. There's a definition of the type &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;usart_config_t&lt;/SPAN&gt; which includes boolean fields &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;enableRx&lt;/SPAN&gt; and &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;enableTx&lt;/SPAN&gt;&amp;nbsp;and the non-helpful doxygen comments (see &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;fsl_usart.h&lt;/SPAN&gt;) say "Enable RX" and Enable TX," respectively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So pardon me if I thought that these fields controlled whether the transmit side and the receive side of the USART could be wholly disabled or enabled. The code in fsl_usart.c disagrees!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;USART_Init()&lt;/SPAN&gt; function we see:&amp;nbsp;&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;    &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;config&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;enableTx&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="comment token"&gt;/* empty and enable txFIFO */&lt;/SPAN&gt;
        base&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;FIFOCFG &lt;SPAN class="operator token"&gt;|&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; USART_FIFOCFG_EMPTYTX_MASK &lt;SPAN class="operator token"&gt;|&lt;/SPAN&gt; USART_FIFOCFG_ENABLETX_MASK&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
        &lt;SPAN class="comment token"&gt;/* setup trigger level */&lt;/SPAN&gt;
        base&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;FIFOTRIG &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;~&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;USART_FIFOTRIG_TXLVL_MASK&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
        base&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;FIFOTRIG &lt;SPAN class="operator token"&gt;|&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;USART_FIFOTRIG_TXLVL&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;config&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;txWatermark&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
        &lt;SPAN class="comment token"&gt;/* enable trigger interrupt */&lt;/SPAN&gt;
        base&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;FIFOTRIG &lt;SPAN class="operator token"&gt;|&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; USART_FIFOTRIG_TXLVLENA_MASK&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;

    &lt;SPAN class="comment token"&gt;/* empty and enable rxFIFO */&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;config&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;enableRx&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        base&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;FIFOCFG &lt;SPAN class="operator token"&gt;|&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; USART_FIFOCFG_EMPTYRX_MASK &lt;SPAN class="operator token"&gt;|&lt;/SPAN&gt; USART_FIFOCFG_ENABLERX_MASK&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
        &lt;SPAN class="comment token"&gt;/* setup trigger level */&lt;/SPAN&gt;
        base&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;FIFOTRIG &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;~&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;USART_FIFOTRIG_RXLVL_MASK&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
        base&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;FIFOTRIG &lt;SPAN class="operator token"&gt;|&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;USART_FIFOTRIG_RXLVL&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;config&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;rxWatermark&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
        &lt;SPAN class="comment token"&gt;/* enable trigger interrupt */&lt;/SPAN&gt;
        base&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;FIFOTRIG &lt;SPAN class="operator token"&gt;|&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; USART_FIFOTRIG_RXLVLENA_MASK&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the two controls determine whether the FIFOs are enabled, not whether the entire transmit or receive functions are enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone in the documentation group fix this? It needs to be fixed in the source code as well as the MCUXpresso configuration tool.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2020 00:19:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/MCUXpresso-SDK-2-7-1-Flexcomm-USART-configuration-doc-error/m-p/1065663#M41161</guid>
      <dc:creator>devel</dc:creator>
      <dc:date>2020-04-07T00:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: MCUXpresso SDK 2.7.1, Flexcomm USART configuration doc error</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/MCUXpresso-SDK-2-7-1-Flexcomm-USART-configuration-doc-error/m-p/1065664#M41162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andy,&lt;/P&gt;&lt;P&gt;To check this issue, we need to know:&lt;/P&gt;&lt;P&gt;- your chip part number&lt;/P&gt;&lt;P&gt;- MCUXpresso IDE version&lt;/P&gt;&lt;P&gt;-&amp;nbsp;"&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;"Enable RX" and "Enable TX." When you mouse over them, the pop-up description says, somewhat redundantly,&lt;/SPAN&gt;", I tried with my LPC546xx sdk2.7.1 project,&amp;nbsp; I didn't see this problem, could you please send me a video about this?&lt;/P&gt;&lt;P&gt;- please send me your demo project, and mention how I can reproduce your issue with your project?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jun Zhang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2020 08:07:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/MCUXpresso-SDK-2-7-1-Flexcomm-USART-configuration-doc-error/m-p/1065664#M41162</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2020-04-08T08:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: MCUXpresso SDK 2.7.1, Flexcomm USART configuration doc error</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/MCUXpresso-SDK-2-7-1-Flexcomm-USART-configuration-doc-error/m-p/1065665#M41163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;OL style="padding: 0px 0px 0px 30px;"&gt;&lt;LI style="margin: 0.2em 0px;"&gt;The device is the LPC55S28, specifically the LPC55S28JBD100 that's on the eval board. This applies to all of the LPC55S2x variants. I have not checked to see if it applies to the LPC55S6x devices.&lt;/LI&gt;&lt;LI style="margin: 0.2em 0px;"&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;I'm using MCUXpresso IDE v11.1.1 [Build 3241] [2020-03-02], which I believe is the latest.&lt;/P&gt;&lt;/LI&gt;&lt;LI style="margin: 0.2em 0px;"&gt;Video is attached.&lt;/LI&gt;&lt;LI style="margin: 0.2em 0px;"&gt;You don't need the project. You can see this clearly with any project that uses a USART. In the first post I attached the relevant code from your driver (in the source file &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;fsl_usart.c&lt;/SPAN&gt;), where the &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;usart_config_t&lt;/SPAN&gt; members &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;enableTx&lt;/SPAN&gt; and &lt;SPAN style="font-family: 'courier new', courier, monospace;"&gt;enableRx&lt;/SPAN&gt; enable their respective FIFOs. I verified that clicking the &lt;SPAN style="font-family: courier new, courier, monospace;"&gt;enableTx&lt;/SPAN&gt; and &lt;SPAN style="font-family: courier new, courier, monospace;"&gt;enableRx&lt;/SPAN&gt; boxes in the peripheral configuration tool (as seen in the video) sets those members to true or false in the generated file &lt;SPAN style="font-family: courier new, courier, monospace;"&gt;peripherals.c&lt;/SPAN&gt;:&lt;/LI&gt;&lt;/OL&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;const&lt;/SPAN&gt; usart_config_t MIDIUART_config &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;baudRate_Bps &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;31250&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;syncMode &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; kUSART_SyncModeDisabled&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;parityMode &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; kUSART_ParityDisabled&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;stopBitCount &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; kUSART_OneStopBit&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;bitCountPerChar &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; kUSART_8BitsPerChar&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;loopback &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; false&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;txWatermark &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; kUSART_TxFifo0&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;rxWatermark &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; kUSART_RxFifo1&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;enableRx &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; true&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;         &lt;SPAN class="comment token"&gt;// set to true if checkbox checked&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;enableTx &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; false&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;        &lt;SPAN class="comment token"&gt;// set to false if checkbox cleared&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;clockPolarity &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; kUSART_RxSampleOnFallingEdge&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
  &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;enableContinuousSCLK &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; false
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;So the point of all of this is that the documentation is not correct. &lt;/EM&gt;The documentation, the name of the member variables and the config tool itself imply that checking the box in the configurator (or setting the const initializers in the code) enables or disables the receiver or transmitter &lt;EM&gt;function&lt;/EM&gt;, which is &lt;EM&gt;wrong&lt;/EM&gt;. This controls whether the FIFO in the function is enabled or not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2020 18:57:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/MCUXpresso-SDK-2-7-1-Flexcomm-USART-configuration-doc-error/m-p/1065665#M41163</guid>
      <dc:creator>devel</dc:creator>
      <dc:date>2020-04-08T18:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: MCUXpresso SDK 2.7.1, Flexcomm USART configuration doc error</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/MCUXpresso-SDK-2-7-1-Flexcomm-USART-configuration-doc-error/m-p/1065666#M41164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A _jive_internal="true" data-content-finding="Community" data-userid="357446" data-username="devel@latke.net" href="https://community.nxp.com/people/devel@latke.net" style="color: #3d9ce7; background-color: #ffffff; border: 0px; font-weight: 200; text-decoration: none; font-size: 1.286rem;"&gt;Andy Peters&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks for reporting it.&lt;/P&gt;&lt;P&gt;I got your point. I will escalate it to SDK development to&amp;nbsp;request fix.&lt;/P&gt;&lt;P&gt;Thanks for bringing the problem to our attention.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Jun Zhang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2020 06:16:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/MCUXpresso-SDK-2-7-1-Flexcomm-USART-configuration-doc-error/m-p/1065666#M41164</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2020-04-09T06:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: MCUXpresso SDK 2.7.1, Flexcomm USART configuration doc error</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/MCUXpresso-SDK-2-7-1-Flexcomm-USART-configuration-doc-error/m-p/1065667#M41165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Andy.&lt;/P&gt;&lt;P&gt;I got feedback from SDK team. This issue will be fixed in next released.&lt;/P&gt;&lt;P&gt;Thanks!&lt;BR /&gt;Jun Zhang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2020 09:42:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/MCUXpresso-SDK-2-7-1-Flexcomm-USART-configuration-doc-error/m-p/1065667#M41165</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2020-04-21T09:42:33Z</dc:date>
    </item>
  </channel>
</rss>

