<?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: IMXRT1024 UART Hardware Control Parameters (in Code and Reference Manual) in i.MX RT Crossover MCUs</title>
    <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1321119#M15762</link>
    <description>&lt;P&gt;Hi Dear&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/60336"&gt;@kerryzhou&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Q1(+): I read it in RM but it is not like the other UARTs. It is a sophisticated one. Thanks.&lt;/P&gt;&lt;P&gt;Q2: What do you exactly mean with "the related pin should not be controlled automatically" ? Will be the pin high signal to the oscilloscope when I debug the code and config.enableRxRTS=true line is run and pass next step?&lt;/P&gt;&lt;P&gt;Q3: Data communication is failing when I use my UART Example that created from scratch(by the way I am working on two example. One of them is my own example and another one is SDK Default hardware control example. And, I am trying to understand what is going on). Simply, it uses UART_WriteByte method in infinite while loop and writing "0x10" byte to the TX pin succesfully. Also, I am observing data flow in oscilloscope successfully. When I set &lt;STRONG&gt;config.enableRxRTS = true&lt;/STRONG&gt; and&amp;nbsp;&lt;STRONG&gt;config.enableTxCTS = true&lt;/STRONG&gt;, datas is not successfully observing 11110000 form in oscilloscope, it is always staying high form. But, when I set&amp;nbsp;&lt;STRONG&gt;config.enableRxRTS = true&lt;/STRONG&gt; and&amp;nbsp;&lt;STRONG&gt;config.enableTxCTS = false,&amp;nbsp;&lt;/STRONG&gt;data is successfully observing 11110000 form in oscilloscope. Why setting&amp;nbsp;&lt;STRONG&gt;c&lt;/STRONG&gt;&lt;STRONG&gt;onfig.enableTxCTS = false&amp;nbsp;&lt;/STRONG&gt;effecting like this? Will I am not able to use TxCTS correctly in my board?&lt;/P&gt;&lt;P&gt;Q4(+): I am just trying to do that on my board. No like in the section 44.3.4.4. Thanks.&lt;/P&gt;&lt;P&gt;Q5: Nooo, absolutely not. RTS pin is asserting as high form one bit before the data bit transmission start. I am writing 1010101....1010(size 256) to the TX pin in my code to observe better in oscilloscope. So I just changed the transferTxData&amp;nbsp;array's content in default SDK example. But it is always staying high bit form (1). What is that mean?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards.&lt;/P&gt;</description>
    <pubDate>Tue, 10 Aug 2021 12:32:53 GMT</pubDate>
    <dc:creator>Lukas_Frank</dc:creator>
    <dc:date>2021-08-10T12:32:53Z</dc:date>
    <item>
      <title>IMXRT1024 UART Hardware Control Parameters (in Code and Reference Manual)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1320193#M15727</link>
      <description>&lt;P&gt;Hi all,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am a little bit confuse about the hardware control flow. In the code side LPUART configuration struct has only RxRTSEnable and TxCTSEnable parameters. However, in the&amp;nbsp;&lt;STRONG&gt;44.6.1.11 &lt;/STRONG&gt;section of reference manual, RXRTSE,&amp;nbsp;TXCTSE and also TXRTSE exists separately. I have following three issues:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First : Is RXRTSEnable parameter in code same with RXRTSE?&lt;/P&gt;&lt;P&gt;Second : What is the equavelant of TXRTSE Flag(44.6.1.11 in RM) in code?&lt;/P&gt;&lt;P&gt;Third : I am just trying to see RTS bit is asserted on Ossiloscope while datatransmission. But when I enable RXRTSEnable=&lt;STRONG&gt;true&lt;/STRONG&gt; and TXCTSEnable=&lt;STRONG&gt;true&lt;/STRONG&gt; my code does not goes into to UART_WriteByte if case. When I set RXRTSEnable=&lt;STRONG&gt;true&lt;/STRONG&gt; and TXCTSEnable=&lt;STRONG&gt;false&amp;nbsp;&lt;/STRONG&gt;my code goes into the if case successfully.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;if(checking whether TxFiFoEmpty)
{
UART_WriteByte(...)
}&lt;/LI-CODE&gt;&lt;P&gt;Thanks and Regards.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Aug 2021 08:17:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1320193#M15727</guid>
      <dc:creator>Lukas_Frank</dc:creator>
      <dc:date>2021-08-09T08:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: IMXRT1024 UART Hardware Control Parameters (in Code and Reference Manual)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1320263#M15729</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/187781"&gt;@Lukas_Frank&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Answer your questions:&lt;/P&gt;
&lt;P&gt;First : Is RXRTSEnable parameter in code same with RXRTSE?&lt;/P&gt;
&lt;P&gt;Answer: yes, it is .&amp;nbsp;enableRxRTS configure&amp;nbsp;RXRTSE&lt;/P&gt;
&lt;P&gt;if (true == config-&amp;gt;enableRxRTS)&lt;BR /&gt;{&lt;BR /&gt;/* Enable the receiver RTS(request-to-send) function. */&lt;BR /&gt;base-&amp;gt;MODIR |= LPUART_MODIR_RXRTSE_MASK;&lt;BR /&gt;}&lt;BR /&gt;if (true == config-&amp;gt;enableTxCTS)&lt;BR /&gt;{&lt;BR /&gt;/* Enable the CTS(clear-to-send) function. */&lt;BR /&gt;base-&amp;gt;MODIR |= LPUART_MODIR_TXCTSE_MASK;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;Second : What is the equavelant of TXRTSE Flag(44.6.1.11 in RM) in code?&lt;/P&gt;
&lt;P&gt;Answer: Driver didn't add it, you can add it in the stucture, or you can use the register to control it directly.&lt;/P&gt;
&lt;P&gt;Third : I am just trying to see RTS bit is asserted on Ossiloscope while datatransmission. But when I enable RXRTSEnable=&lt;STRONG&gt;true&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and TXCTSEnable=&lt;STRONG&gt;true&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;my code does not goes into to UART_WriteByte if case. When I set RXRTSEnable=&lt;STRONG&gt;true&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and TXCTSEnable=&lt;STRONG&gt;false&amp;nbsp;&lt;/STRONG&gt;my code goes into the if case successfully.&lt;/P&gt;
&lt;P&gt;Answer:&amp;nbsp; Which code you are refering? SDK lpuart_harware_flo_control project, I didn't find your mentioned&amp;nbsp;RXRTSEnable&amp;nbsp;TXCTSEnable, just&amp;nbsp;enableRxRTS and&amp;nbsp;enableTxCTS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Kerry&lt;/P&gt;</description>
      <pubDate>Mon, 09 Aug 2021 09:45:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1320263#M15729</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2021-08-09T09:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: IMXRT1024 UART Hardware Control Parameters (in Code and Reference Manual)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1320826#M15753</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/60336"&gt;@kerryzhou&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Q1:What does&amp;nbsp;&lt;SPAN&gt;TXRTSE exactly it is not really clear on RM?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Q2(Third of last post):I just mentioned about them conceptually. You are right they are configUART.enableRxRTS and configUART.enableTxRTS.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;I am just trying to see RTS bit is asserted on one probe of Ossiloscope while seeing data transmission signals on other probe. When I just enable RxRTS and disable TxCTS data tranmission is failed. Why two of them must be enabled? I wonder about that because in the example of SDK Uart Interrupt data transmits successfully even if I do not enable RxRTS or TxCTS.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Q3:Why should I enable both RxRTS and TxCTS for the successful transmission on hardware flow control? Couldn’t I do data transmission from UART Module to the outer environment by disabling TxCTS?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Q4:What should I do successfully transmit my data and observe RxRTS signal on one probe and observe my data bits like 10101010 on other probe ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Q5:When I try SDKs hardware flow control example, my datas seen different from sended by buffer? I only just edit code by changing transferTxData array by filling it 101010101010….101010 (size 256).&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Aug 2021 06:27:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1320826#M15753</guid>
      <dc:creator>Lukas_Frank</dc:creator>
      <dc:date>2021-08-10T06:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: IMXRT1024 UART Hardware Control Parameters (in Code and Reference Manual)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1320901#M15756</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/187781"&gt;@Lukas_Frank&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;Answer your questions:&lt;/P&gt;
&lt;P&gt;Q1:What does&amp;nbsp;&lt;SPAN&gt;TXRTSE exactly it is not really clear on RM?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Answer:&amp;nbsp; RM mentioned it in the register:&lt;/P&gt;
&lt;P&gt;Transmitter request-to-send enable&amp;nbsp;Controls RTS before and after a transmission. This bit should be changed only when the transmitter is&amp;nbsp;disabled.&lt;/P&gt;
&lt;P&gt;1b - When a character is placed into an empty transmit shift register, RTS asserts one bit time&lt;BR /&gt;before the start bit is transmitted. RTS deasserts one bit time after all characters in the transmitter&lt;BR /&gt;FIFO and shift register are completely sent, including the last stop bit.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Q2(Third of last post):I just mentioned about them conceptually. You are right they are configUART.enableRxRTS and configUART.enableTxRTS.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;I am just trying to see RTS bit is asserted on one probe of Ossiloscope while seeing data transmission signals on other probe. When I just enable RxRTS and disable TxCTS data tranmission is failed. Why two of them must be enabled? I wonder about that because in the example of SDK Uart Interrupt data transmits successfully even if I do not enable RxRTS or TxCTS.&lt;BR /&gt;Answer:&amp;nbsp; Do you check the RTS, CTS wave when it is not enabled? You also can debug the code, check the related register, whether it is enabled.&amp;nbsp; If the register is not enabled, the related pin should not be controlled automatically.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Q3:Why should I enable both RxRTS and TxCTS for the successful transmission on hardware flow control? Couldn’t I do data transmission from UART Module to the outer environment by disabling TxCTS?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Answer: It determine your usage, whether your external side also need the RTS and CTS? I don't think you need to enable both is the must. This is from the RM:&lt;/P&gt;
&lt;P&gt;The transmitter's CTS_B signal can be enabled even if the same LPUART receiver's&lt;BR /&gt;RTS_B signal is disabled.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Q4:What should I do successfully transmit my data and observe RxRTS signal on one probe and observe my data bits like 10101010 on other probe ?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Answer: Do you want to use it for the external 485? YOu can refer to this one:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kerryzhou_0-1628581366502.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/152401i35E3FFE2F9F312BE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kerryzhou_0-1628581366502.png" alt="kerryzhou_0-1628581366502.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Q5:When I try SDKs hardware flow control example, my datas seen different from sended by buffer? I only just edit code by changing transferTxData array by filling it 101010101010….101010 (size 256).&lt;BR /&gt;Answer:&amp;nbsp; data should be the same as the UART, just need to check the RTS, CTS pin.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Aug 2021 07:43:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1320901#M15756</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2021-08-10T07:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: IMXRT1024 UART Hardware Control Parameters (in Code and Reference Manual)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1321042#M15760</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/60336"&gt;@kerryzhou&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Q1(+): I read it in RM but it is not like the other UARTs. It is a sophisticated one. Thanks.&lt;/P&gt;&lt;P&gt;Q2: What do you exactly mean with "t&lt;SPAN&gt;he related pin should not be controlled automatically" ? Will be the pin high signal to the oscilloscope when I debug the code and config.enableRxRTS=true line is run and pass next step?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Q3: Data communication is failing when I use my UART Example that created from scratch(by the way I am working on two example. One of them is my own example and another one is SDK Default hardware control example. And, I am trying to understand what is going on). Simply, it uses UART_WriteByte method in infinite while loop and writing "0x10" byte to the TX pin succesfully. Also, I am observing data flow in oscilloscope successfully. But, when I set config.enableRxRTS = true, datas is not successfully observing 11110000 form in oscilloscope, it is always staying high form.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Q4(+): I am just trying to do that on my board. No like in the section 44.3.4.4. Thanks.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Q5: Nooo, absolutely not. RTS pin is asserting as high form one bit before the data bit transmission start. I am writing 1010101....1010(size 256) to the TX pin in my code to observe better in oscilloscope. So I just changed the transferTxData&amp;nbsp;array's content in default SDK example. But it is always staying high bit form (1). What is that mean?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks and Regards.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Aug 2021 10:42:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1321042#M15760</guid>
      <dc:creator>Lukas_Frank</dc:creator>
      <dc:date>2021-08-10T10:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: IMXRT1024 UART Hardware Control Parameters (in Code and Reference Manual)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1321119#M15762</link>
      <description>&lt;P&gt;Hi Dear&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/60336"&gt;@kerryzhou&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Q1(+): I read it in RM but it is not like the other UARTs. It is a sophisticated one. Thanks.&lt;/P&gt;&lt;P&gt;Q2: What do you exactly mean with "the related pin should not be controlled automatically" ? Will be the pin high signal to the oscilloscope when I debug the code and config.enableRxRTS=true line is run and pass next step?&lt;/P&gt;&lt;P&gt;Q3: Data communication is failing when I use my UART Example that created from scratch(by the way I am working on two example. One of them is my own example and another one is SDK Default hardware control example. And, I am trying to understand what is going on). Simply, it uses UART_WriteByte method in infinite while loop and writing "0x10" byte to the TX pin succesfully. Also, I am observing data flow in oscilloscope successfully. When I set &lt;STRONG&gt;config.enableRxRTS = true&lt;/STRONG&gt; and&amp;nbsp;&lt;STRONG&gt;config.enableTxCTS = true&lt;/STRONG&gt;, datas is not successfully observing 11110000 form in oscilloscope, it is always staying high form. But, when I set&amp;nbsp;&lt;STRONG&gt;config.enableRxRTS = true&lt;/STRONG&gt; and&amp;nbsp;&lt;STRONG&gt;config.enableTxCTS = false,&amp;nbsp;&lt;/STRONG&gt;data is successfully observing 11110000 form in oscilloscope. Why setting&amp;nbsp;&lt;STRONG&gt;c&lt;/STRONG&gt;&lt;STRONG&gt;onfig.enableTxCTS = false&amp;nbsp;&lt;/STRONG&gt;effecting like this? Will I am not able to use TxCTS correctly in my board?&lt;/P&gt;&lt;P&gt;Q4(+): I am just trying to do that on my board. No like in the section 44.3.4.4. Thanks.&lt;/P&gt;&lt;P&gt;Q5: Nooo, absolutely not. RTS pin is asserting as high form one bit before the data bit transmission start. I am writing 1010101....1010(size 256) to the TX pin in my code to observe better in oscilloscope. So I just changed the transferTxData&amp;nbsp;array's content in default SDK example. But it is always staying high bit form (1). What is that mean?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Aug 2021 12:32:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1321119#M15762</guid>
      <dc:creator>Lukas_Frank</dc:creator>
      <dc:date>2021-08-10T12:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: IMXRT1024 UART Hardware Control Parameters (in Code and Reference Manual)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1321139#M15763</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/60336"&gt;@kerryzhou&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Q1(+): I read it in RM but it is not like the other UARTs. It is a sophisticated one. Thanks.&lt;/P&gt;&lt;P&gt;Q2: What do you exactly mean with "the related pin should not be controlled automatically" ? Will be the pin high signal to the oscilloscope when I debug the code and config.enableRxRTS=true line is run and pass next step?&lt;/P&gt;&lt;P&gt;Q3: Data communication is failing when I use my UART Example that created from scratch(by the way I am working on two example. One of them is my own example and another one is SDK Default hardware control example. And, I am trying to understand what is going on). Simply, it uses UART_WriteByte method in infinite while loop and writing "0x10" byte to the TX pin succesfully. Also, I am observing data flow in oscilloscope successfully. When I set &lt;STRONG&gt;config.enableRxRTS = true&lt;/STRONG&gt; and &lt;STRONG&gt;config.enableTxCTS = true,&lt;/STRONG&gt; datas is not successfully observing 11110000 form in oscilloscope, it is always staying high form. But when I set&amp;nbsp;&lt;STRONG&gt;config.enableRxRTS = true&lt;/STRONG&gt; and &lt;STRONG&gt;config.enableTxCTS = false,&amp;nbsp;&lt;/STRONG&gt;datas is successfully observing as 11110000 form in oscilloscope. Why&amp;nbsp;&lt;STRONG&gt;config.enableTxCTS = true &lt;/STRONG&gt;effects like that? Will I am not able to use TxCTS in my board?&lt;/P&gt;&lt;P&gt;Q4(+): I am just trying to do that on my board. No like in the section 44.3.4.4. Thanks.&lt;/P&gt;&lt;P&gt;Q5: Nooo, absolutely not. RTS pin is asserting as high form one bit before the data bit transmission start. I am writing 1010101....1010(size 256) to the TX pin in my code to observe better in oscilloscope. So I just changed the transferTxData&amp;nbsp;array's content in default SDK example. But it is always staying high bit form (1). What is that mean?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Aug 2021 13:06:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1321139#M15763</guid>
      <dc:creator>Lukas_Frank</dc:creator>
      <dc:date>2021-08-10T13:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: IMXRT1024 UART Hardware Control Parameters (in Code and Reference Manual)</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1321539#M15780</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/187781"&gt;@Lukas_Frank&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Please check this application note, which maybe useful to you:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.nxp.com/docs/en/application-note/AN12679.pdf" target="_blank"&gt;https://www.nxp.com/docs/en/application-note/AN12679.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;It use the RTS control the 485, and you can see, in the Figure15, the RTS is controlled automatically.&lt;/P&gt;
&lt;P&gt;So, if you test it, you also can share some wave to me, then I can help you to check the details.&lt;/P&gt;
&lt;P&gt;best Regards,&lt;/P&gt;
&lt;P&gt;Kerry&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 04:46:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/IMXRT1024-UART-Hardware-Control-Parameters-in-Code-and-Reference/m-p/1321539#M15780</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2021-08-11T04:46:29Z</dc:date>
    </item>
  </channel>
</rss>

