<?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:  strange problem with parity bit (for odd) and stop bits (for two) in UART-KL25Z in Kinetis Software Development Kit</title>
    <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778798#M7811</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Yaish,&lt;/P&gt;&lt;P&gt;Firstly, I suggest you use fixed char format protocol for example parity bit, stop bits number, otherwise, even the configuration information is incorrect, your code will clash, in other words, you have to use predefined parity bit(even with or without), stop bit.&lt;/P&gt;&lt;P&gt;Secondly, it seems that the code has issue:&lt;/P&gt;&lt;P style="direction: ltr;"&gt;while (!(UART_S1_REG(UART0_BASE_PTR) &amp;amp; UART_S1_RDRF_MASK));&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[0]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[1]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[2]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;/P&gt;&lt;P&gt;I suppose that the uart of Kl25z does not support FIFO, you have to use the lines:&lt;/P&gt;&lt;P style="direction: ltr;"&gt;while (!(UART_S1_REG(UART0_BASE_PTR) &amp;amp; UART_S1_RDRF_MASK));&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[0]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;while (!(UART_S1_REG(UART0_BASE_PTR) &amp;amp; UART_S1_RDRF_MASK));&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[1]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;while (!(UART_S1_REG(UART0_BASE_PTR) &amp;amp; UART_S1_RDRF_MASK));&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[2]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;Hope it can help you.&lt;/P&gt;&lt;P style="direction: ltr;"&gt;BR&lt;/P&gt;&lt;P style="direction: ltr;"&gt;Xiangjun Rong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 May 2018 08:09:36 GMT</pubDate>
    <dc:creator>xiangjun_rong</dc:creator>
    <dc:date>2018-05-25T08:09:36Z</dc:date>
    <item>
      <title>strange problem with parity bit (for odd) and stop bits (for two) in UART-KL25Z</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778797#M7810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="direction: ltr;"&gt;hey,&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;(code is below)&lt;/STRONG&gt;&lt;BR /&gt;I'm using UART to communicate with the computer (using both C# in visual studio and hyperterminal). First, I made the parity bit even and&amp;nbsp; one stop bit, and everything was working fine.&lt;BR /&gt;next I tried to change the parity bit to odd, and when sending one byte (one char) from PC it works fine, but when I send two bytes something went wrong and I sometimes gets framing error and sometimes parity error (usually both in same). the first char is detected well and the second is detected as something which I didn't send at all. when the KL25Z is sending chars to the PC, I get part of the letters, and the others are labeled with '?'&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;the question is why this can happen when the only change between the even option and the odd option is the bit PT in UART0_C2?&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;another problem occurs when I set 2 stop bit (even in parity)- it's doing the same a I described&amp;nbsp; with odd situation, but this time when sending from the KL25Z to the PC, the PC gets nothing.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;worth mentioning: the setting of the UART in the PC and the KL25Z are changing as they should.&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;here is the the code I wrote for changing the setting the the UART:&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&amp;nbsp; &amp;nbsp; /********************************************************************&lt;/P&gt;&lt;P style="direction: ltr;"&gt;changeUARTsetting- receive from PC the wanted bound rate, parity bit and stop bit and change the UART settings.&lt;/P&gt;&lt;P style="direction: ltr;"&gt;After receiving the info, KL25Z will send ACK char for PC.&lt;/P&gt;&lt;P style="direction: ltr;"&gt;*********************************************************************/&lt;/P&gt;&lt;P style="direction: ltr;"&gt;void changeUARTsetting(){&lt;/P&gt;&lt;P style="direction: ltr;"&gt;char settings_info[3]; //info array; settings_info[0]=bound rate, settings_info[1]=parity bit, settings_info[2]=stop bit.&lt;/P&gt;&lt;P style="direction: ltr;"&gt;UART0_C2 &amp;amp;= ~UART0_C2_RIE_MASK; //disable receiver interrupt&amp;nbsp;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;/* Wait until character has been received -for first initial*/&lt;/P&gt;&lt;P style="direction: ltr;"&gt;while (!(UART_S1_REG(UART0_BASE_PTR) &amp;amp; UART_S1_RDRF_MASK));&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[0]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[1]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[2]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;sendACK((char)GenralACK);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;while(!(UART_S1_REG(UART0_BASE_PTR) &amp;amp; UART_S1_TC_MASK)); /* Wait until trr is completed */&lt;/P&gt;&lt;P style="direction: ltr;"&gt;//disable transmitter and receiver&amp;nbsp;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;UART0_C2 &amp;amp;= ~(UART_C2_TE_MASK&lt;/P&gt;&lt;P style="direction: ltr;"&gt;| UART_C2_RE_MASK );&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;switch (settings_info[0]){&lt;/P&gt;&lt;P style="direction: ltr;"&gt;case '1':&lt;/P&gt;&lt;P style="direction: ltr;"&gt;Uart0_Br_Sbr(CORE_CLOCK/2/1000, SDA_SERIAL_BAUD2400);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;break;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;case '2':&lt;/P&gt;&lt;P style="direction: ltr;"&gt;Uart0_Br_Sbr(CORE_CLOCK/2/1000, SDA_SERIAL_BAUD9600);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;break;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;case '3':&lt;/P&gt;&lt;P style="direction: ltr;"&gt;Uart0_Br_Sbr(CORE_CLOCK/2/1000, SDA_SERIAL_BAUD19200);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;break;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;case'4':&lt;/P&gt;&lt;P style="direction: ltr;"&gt;Uart0_Br_Sbr(CORE_CLOCK/2/1000, SDA_SERIAL_BAUD38400);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;break;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;}&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;switch(settings_info[1]){&lt;/P&gt;&lt;P style="direction: ltr;"&gt;case '0': //no parity&lt;/P&gt;&lt;P style="direction: ltr;"&gt;UART0_C1 &amp;amp;= ~(UART0_C1_PE_MASK | UART0_C1_M_MASK); //set also 8 bit data&lt;/P&gt;&lt;P style="direction: ltr;"&gt;break;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;case '1': //even parity&lt;/P&gt;&lt;P style="direction: ltr;"&gt;UART0_C1 |= UART0_C1_PE_MASK | UART0_C1_M_MASK; //set also 9 bit data&amp;nbsp;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;UART0_C1 &amp;amp;= ~UART_C1_PT_MASK;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;break;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;case '2': //odd bit&lt;/P&gt;&lt;P style="direction: ltr;"&gt;UART0_C1 |= UART0_C1_PE_MASK |UART_C1_PT_MASK | UART0_C1_M_MASK; //set also 9 bit data&amp;nbsp;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;break;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;}&lt;/P&gt;&lt;P style="direction: ltr;"&gt;switch(settings_info[2]){&lt;/P&gt;&lt;P style="direction: ltr;"&gt;case '1': //one stop bit&amp;nbsp;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;UART0_BDH &amp;amp;= ~UART0_BDH_SBNS_MASK;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;break;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;case '2': //two stop bit&lt;/P&gt;&lt;P style="direction: ltr;"&gt;UART0_BDH |= UART0_BDH_SBNS_MASK;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;break;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;}&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;// Enable Transmitter, Receiver, Receive interrupt&amp;nbsp;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;UART0_C2 = UARTLP_C2_RE_MASK | UARTLP_C2_TE_MASK | UART_C2_RIE_MASK; // Enable Transmitter, Receiver, Receive interrupt&amp;nbsp;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 20:11:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778797#M7810</guid>
      <dc:creator>ofiryaish</dc:creator>
      <dc:date>2018-05-23T20:11:55Z</dc:date>
    </item>
    <item>
      <title>Re:  strange problem with parity bit (for odd) and stop bits (for two) in UART-KL25Z</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778798#M7811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Yaish,&lt;/P&gt;&lt;P&gt;Firstly, I suggest you use fixed char format protocol for example parity bit, stop bits number, otherwise, even the configuration information is incorrect, your code will clash, in other words, you have to use predefined parity bit(even with or without), stop bit.&lt;/P&gt;&lt;P&gt;Secondly, it seems that the code has issue:&lt;/P&gt;&lt;P style="direction: ltr;"&gt;while (!(UART_S1_REG(UART0_BASE_PTR) &amp;amp; UART_S1_RDRF_MASK));&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[0]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[1]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[2]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;/P&gt;&lt;P&gt;I suppose that the uart of Kl25z does not support FIFO, you have to use the lines:&lt;/P&gt;&lt;P style="direction: ltr;"&gt;while (!(UART_S1_REG(UART0_BASE_PTR) &amp;amp; UART_S1_RDRF_MASK));&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[0]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;while (!(UART_S1_REG(UART0_BASE_PTR) &amp;amp; UART_S1_RDRF_MASK));&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[1]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;while (!(UART_S1_REG(UART0_BASE_PTR) &amp;amp; UART_S1_RDRF_MASK));&lt;/P&gt;&lt;P style="direction: ltr;"&gt;settings_info[2]=uart_getchar (UART0_BASE_PTR);&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;Hope it can help you.&lt;/P&gt;&lt;P style="direction: ltr;"&gt;BR&lt;/P&gt;&lt;P style="direction: ltr;"&gt;Xiangjun Rong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2018 08:09:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778798#M7811</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2018-05-25T08:09:36Z</dc:date>
    </item>
    <item>
      <title>Re:  strange problem with parity bit (for odd) and stop bits (for two) in UART-KL25Z</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778799#M7812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="direction: ltr;"&gt;hey,&lt;BR /&gt;the uart_getchar function is doing what you have mentioned:&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;BR /&gt;char uart_getchar (UART_MemMapPtr channel)&lt;BR /&gt;{&lt;BR /&gt; /* Wait until character has been received */&lt;BR /&gt; while (!(UART_S1_REG(channel) &amp;amp; UART_S1_RDRF_MASK));&lt;BR /&gt; &lt;BR /&gt; /* Return the 8-bit data from the receiver */&lt;BR /&gt; return UART_D_REG(channel);&lt;BR /&gt;}&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;As I said I get all the right char from the computer, and the UART registers are changed as I thought they would.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;EM&gt;&lt;STRONG&gt;I managed to narrow the problem down&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="direction: ltr;"&gt;&lt;STRONG style="background-color: #ffffff;"&gt;&lt;SPAN style="color: #222222; font-size: 13px;"&gt;the problem with the even parity is gone (thanks to a delay made in the PC side (C#- visual studio)).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #222222; font-size: 13px;"&gt;now the problem with the stop bit is still occurring. and this time I know that the problem is with the KL25Z, because&amp;nbsp;I checked&amp;nbsp;it both in visual studio and hyperterminal&amp;nbsp; (&lt;SPAN style="background-color: #ffffff;"&gt;hyperterminal-outside software which should work for serial communication).&lt;BR /&gt;&lt;BR /&gt;about the fixed&amp;nbsp;&lt;SPAN style="color: #51626f;"&gt;char format protocol, know it's I should do in general, but this is what I have been asked for :smileysad:&lt;BR /&gt;&lt;BR /&gt;thank you&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2018 10:56:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778799#M7812</guid>
      <dc:creator>ofiryaish</dc:creator>
      <dc:date>2018-05-25T10:56:42Z</dc:date>
    </item>
    <item>
      <title>Re:  strange problem with parity bit (for odd) and stop bits (for two) in UART-KL25Z</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778800#M7813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Ofir,&lt;/P&gt;&lt;P&gt;do you means that you have issue when you use two STOP bits for each byte transfer? Note that the receiver should also be configured to receive byte with two stop bits.&lt;/P&gt;&lt;P&gt;If it is the case, you can transfer multiple 0x55, then check the waveform of TX pin, check if the waveform is okay or not.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2018 10:00:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778800#M7813</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2018-05-28T10:00:50Z</dc:date>
    </item>
    <item>
      <title>Re:  strange problem with parity bit (for odd) and stop bits (for two) in UART-KL25Z</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778801#M7814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey,&lt;BR /&gt;the problem occurs when I change to stop bit from 1 to 2, if I send only character (byte) from the PC the KL25z is reading it well, when sending more then one character at once, it popping an overrun error.&lt;BR /&gt;transmitting from KL25z is working fine, I think because of the fact the the KL25Z is sending byte by byte.&lt;BR /&gt;&lt;BR /&gt;I added the configurations I made for 2 stop bit does I missing something?&lt;BR /&gt;&lt;BR /&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2018 08:21:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778801#M7814</guid>
      <dc:creator>ofiryaish</dc:creator>
      <dc:date>2018-05-29T08:21:26Z</dc:date>
    </item>
    <item>
      <title>Re:  strange problem with parity bit (for odd) and stop bits (for two) in UART-KL25Z</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778802#M7815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Ofir,&lt;/P&gt;&lt;P&gt;The overrun error means that the KL25 uart is not fast enough to read the uart data register, I suppose that you use interrupt mode to read the uart data register, but the KL25 is overloaded. How about reducing the baudrate of uart?&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Xiangjun Rong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2018 09:27:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778802#M7815</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2018-05-29T09:27:14Z</dc:date>
    </item>
    <item>
      <title>Re:  strange problem with parity bit (for odd) and stop bits (for two) in UART-KL25Z</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778803#M7816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if both systems has the same bound rate, why something like that can happen?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;thank you,&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jun 2018 21:48:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778803#M7816</guid>
      <dc:creator>ofiryaish</dc:creator>
      <dc:date>2018-06-02T21:48:51Z</dc:date>
    </item>
    <item>
      <title>Re:  strange problem with parity bit (for odd) and stop bits (for two) in UART-KL25Z</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778804#M7817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Ofir,&lt;/P&gt;&lt;P&gt;Regarding the overrun error, I suppose that the KL25 is too busy to read the uart receiver data register before the next character arrive. Pls disable the other module, just enable uart work and have a try.&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Xiangjun Rong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 08:03:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/strange-problem-with-parity-bit-for-odd-and-stop-bits-for-two-in/m-p/778804#M7817</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2018-06-04T08:03:24Z</dc:date>
    </item>
  </channel>
</rss>

