<?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: fsl_flexio_uart.c change proposal in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/fsl-flexio-uart-c-change-proposal/m-p/783103#M47675</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need double check with SDK software design team about this request.&lt;/P&gt;&lt;P&gt;I will let you know when there with any feedback.&lt;/P&gt;&lt;P&gt;Thank you for the patience.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Mike&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Aug 2018 02:28:52 GMT</pubDate>
    <dc:creator>Hui_Ma</dc:creator>
    <dc:date>2018-08-15T02:28:52Z</dc:date>
    <item>
      <title>fsl_flexio_uart.c change proposal</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/fsl-flexio-uart-c-change-proposal/m-p/783102#M47674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I propose to add the following code to&amp;nbsp;FLEXIO_UART_TransferReceiveNonBlocking() function in fsl_flexio_uart.c (Kinetis SDK). This will make sure that callback function is called in all cases when requested data is received. It makes the code that uses the driver easier to implement. Similar code appears to be already supported/present in fsl_uart.c driver but not in fsl_flexio_uart.c version.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the diff for fsl_felxio_uart.c&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Enable FLEXIO_UART RX IRQ if previously enabled. */&lt;BR /&gt; FLEXIO_UART_EnableInterrupts(base, kFLEXIO_UART_RxDataRegFullInterruptEnable);&lt;/P&gt;&lt;P&gt;+/* Call user callback since all data are received. */&lt;BR /&gt;+if (0 == bytesToReceive)&lt;BR /&gt;+{&lt;BR /&gt;+if (handle-&amp;gt;callback)&lt;BR /&gt;+{&lt;BR /&gt;+handle-&amp;gt;callback(base, handle, kStatus_FLEXIO_UART_RxIdle, handle-&amp;gt;userData);&lt;BR /&gt;+}&lt;BR /&gt;+}&lt;BR /&gt;+}&lt;BR /&gt; /* Ring buffer not used. */&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 21:59:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/fsl-flexio-uart-c-change-proposal/m-p/783102#M47674</guid>
      <dc:creator>michals</dc:creator>
      <dc:date>2018-08-13T21:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: fsl_flexio_uart.c change proposal</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/fsl-flexio-uart-c-change-proposal/m-p/783103#M47675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need double check with SDK software design team about this request.&lt;/P&gt;&lt;P&gt;I will let you know when there with any feedback.&lt;/P&gt;&lt;P&gt;Thank you for the patience.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Mike&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2018 02:28:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/fsl-flexio-uart-c-change-proposal/m-p/783103#M47675</guid>
      <dc:creator>Hui_Ma</dc:creator>
      <dc:date>2018-08-15T02:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: fsl_flexio_uart.c change proposal</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/fsl-flexio-uart-c-change-proposal/m-p/783104#M47676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the patience.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the confirmation info form SDK software team, your suggestion is adopted.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;You could find the updated FLEXIO_UART_TransferReceiveNonBlocking() function in in fsl_flexio_uart.c&amp;nbsp; file at next released SDK software package.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Mike&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2018 00:45:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/fsl-flexio-uart-c-change-proposal/m-p/783104#M47676</guid>
      <dc:creator>Hui_Ma</dc:creator>
      <dc:date>2018-08-16T00:45:05Z</dc:date>
    </item>
  </channel>
</rss>

