<?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: TWR K60N512 uart ISR triggering using mqx 4.0 in MQX Software Solutions</title>
    <link>https://community.nxp.com/t5/MQX-Software-Solutions/TWR-K60N512-uart-ISR-triggering-using-mqx-4-0/m-p/266008#M8025</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shiju,&lt;/P&gt;&lt;P&gt;I suspect your board header file or user_config.h isn't setup correctly.&lt;/P&gt;&lt;P&gt;For this example (again I'm using the TWR-K60D100M[newer silicon] but should be same for TWRK60N512[older silicon]).&lt;/P&gt;&lt;P&gt;Please verify that you are getting the "hello" and "world" printf's working first that output via the TWR-SER card.&lt;/P&gt;&lt;P&gt;The OSBDM serial interface is the input and should be able to echo the OSBDM character to the TWR-SER card.&lt;/P&gt;&lt;P&gt;Once you have verified the two headers above have been configured correctly, clean your RTOS and re-build it, then re-build your hello MQX application and test.&lt;/P&gt;&lt;P&gt;user_config.h&lt;span class="lia-inline-image-display-wrapper" image-alt="ScreenHunter_48 Dec. 18 07.35.gif"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/41107iBEE2BBCEA85A35E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="ScreenHunter_48 Dec. 18 07.35.gif" alt="ScreenHunter_48 Dec. 18 07.35.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="ScreenHunter_47 Dec. 18 07.35.gif"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/41178iF9EB40CF369D9C58/image-size/large?v=v2&amp;amp;px=999" role="button" title="ScreenHunter_47 Dec. 18 07.35.gif" alt="ScreenHunter_47 Dec. 18 07.35.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;twrk60d100m.h&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Dec 2013 13:44:01 GMT</pubDate>
    <dc:creator>DavidS</dc:creator>
    <dc:date>2013-12-18T13:44:01Z</dc:date>
    <item>
      <title>TWR K60N512 uart ISR triggering using mqx 4.0</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/TWR-K60N512-uart-ISR-triggering-using-mqx-4-0/m-p/266004#M8021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am using TWR K60N512 with mqx 4.0 .I need to create an ISR function for uart3 interrupt that trigger whenever a character is received .I tried to create an ISR&amp;nbsp; function, but it never gets triggered. &lt;/P&gt;&lt;P&gt;These are my initialization steps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define RS232CHANNEL "ittyd:"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; rs232_dev = fopen( RS232CHANNEL, BSP_DEFAULT_IO_OPEN_MODE ); &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; _nvic_int_init(INT_UART3_RX_TX, 2, TRUE);&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; _nvic_int_enable(INT_UART3_RX_TX);&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; _int_install_isr(INT_UART3_RX_TX, uart3_rx_tx_isr, rs232_dev);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;I have enabled the ITTYD in userconfig.h&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following is the ISR function that i created.&lt;/P&gt;&lt;P&gt;void uart3_rx_tx_isr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pointer user_isr_ptr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; uchar ubUDR;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if (fstatus( rs232_dev ))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ubUDR = fgetc( rs232_dev );&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody provide me a sample code for the same&amp;nbsp; or help me to create an ISR that trigger whenever a character is received?.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 13:12:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/TWR-K60N512-uart-ISR-triggering-using-mqx-4-0/m-p/266004#M8021</guid>
      <dc:creator>shiju_cg</dc:creator>
      <dc:date>2013-12-17T13:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: TWR K60N512 uart ISR triggering using mqx 4.0</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/TWR-K60N512-uart-ISR-triggering-using-mqx-4-0/m-p/266005#M8022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;typedef struct my_isr_struct&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; pointer&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OLD_ISR_DATA;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; void&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (_CODE_PTR_ OLD_ISR)(pointer);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; // what else needs to be in this structure&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; _mqx_uint&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; intrCount;&amp;nbsp;&amp;nbsp; // count the number of interrupts&lt;/P&gt;&lt;P&gt;} MY_ISR_STRUCT, _PTR_ MY_ISR_STRUCT_PTR;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void SetupRS232(void)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; MY_ISR_STRUCT_PTR&amp;nbsp; isr_ptr;&lt;/P&gt;&lt;P&gt;&amp;nbsp; fh_ptr =(pointer)fopen("ittyd:", (char const*)(IO_SERIAL_RAW_IO | IO_SERIAL_XON_XOFF));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; isr_ptr = (MY_ISR_STRUCT_PTR)(_mem_alloc_zero((_mem_size)sizeof(MY_ISR_STRUCT)));&lt;/P&gt;&lt;P&gt;&amp;nbsp; isr_ptr-&amp;gt;intrCount = 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp; isr_ptr-&amp;gt;OLD_ISR_DATA = _int_get_isr_data(BSP_UART3_INTERRUPT_VECTOR);&lt;/P&gt;&lt;P&gt;&amp;nbsp; isr_ptr-&amp;gt;OLD_ISR = _int_get_isr(BSP_UART3_INTERRUPT_VECTOR);&lt;/P&gt;&lt;P&gt;&amp;nbsp; _int_install_isr(BSP_UART3_INTERRUPT_VECTOR, new_uart_isr, isr_ptr);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void new_uart_isr(pointer user_isr_ptr)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; MY_ISR_STRUCT_PTR&amp;nbsp; isr_ptr = (MY_ISR_STRUCT_PTR)user_isr_ptr;&lt;/P&gt;&lt;P&gt;&amp;nbsp; (*isr_ptr-&amp;gt;OLD_ISR)(isr_ptr-&amp;gt;OLD_ISR_DATA);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Dec 2013 13:47:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/TWR-K60N512-uart-ISR-triggering-using-mqx-4-0/m-p/266005#M8022</guid>
      <dc:creator>KJFPE</dc:creator>
      <dc:date>2013-12-17T13:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: TWR K60N512 uart ISR triggering using mqx 4.0</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/TWR-K60N512-uart-ISR-triggering-using-mqx-4-0/m-p/266006#M8023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi CG,&lt;/P&gt;&lt;P&gt;I grabbed your code and added it to the mqx/examples/hello2.&lt;/P&gt;&lt;P&gt; I'm using the PEMicro Universal debugger but have also plugged in the OSBDM (after I had been debugging the project several times to make sure that CW was using the correct debugger interface) to enable a second serial interface (my primary serial interface is on the TWR-SER card (ttyd).&amp;nbsp; I then modified the BSP user_config.h to #define ittyf 1 which is the OSBDM debugger interface.&amp;nbsp; Use device manger to look at the "Ports" to determine what COM PORT it is using.&amp;nbsp; My assumption is you are using the OSBDM debugger interface.&amp;nbsp; If not that is OK too. &lt;/P&gt;&lt;P&gt;Once you modify the user_config.h always re-compile your RTOS.&lt;/P&gt;&lt;P&gt;I then played around with your code for a bit to get used to it and came up with the following conclusions:&lt;/P&gt;&lt;P&gt;- You are mixing baremetal code with RTOS code.&amp;nbsp; Usually this doesn't work well and it did not work here for following reasons:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - The interrupt was triggering OK but the fstaus() and fgetc() function calls are to the RTOS drivers it is expecting to be working.&amp;nbsp; Your insertion of your uart5_rx_tx_isr did this and therefore was not allowing the received UART character to be processed and placed into a fifo as the interrupt driver for the ittyf device wants to use,&amp;nbsp; So the fstatus() call would not see a character in the UART interrupt fifo and never call the fgetc().&amp;nbsp; If commenting out the fstatus() then the fgetc() call also is looking for a character on the fifo, doesn't see one present and then suspends the task (usually not a good thing when calling from a interrupt service routine.&lt;/P&gt;&lt;P&gt;- The hack I did was to use your code to enable the UART to generate an interrupt when a character is received and then baremetal code read UART Status 1 register followed by read of receive buffer of the UART to clear interrupt flag and get the character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached is the code.&amp;nbsp; To restore it to the hello2 original source change #define .CUSTOMER_CODE 0. &lt;/P&gt;&lt;P&gt;To run modified code to see your baremetal code receive a character change #define CUSTOMER_CODE 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Important steps for testing as I didn't use the best mqx/examples project as it only runs through the code/task once.&amp;nbsp; Set multiple breakpoints after your code initializes the ttyf interface and one in the isr.&amp;nbsp; Once breakpoint hit, then in your OSBDM terminal window type ONE character, hit Resume/Go Run (whatever you like to call it) and you should hit the breakpoint in the interrupt service routine or see the typed character echoed back to OSBDM terminal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Summary: Don't mix baremetal code with MQX RTOS code.&amp;nbsp; Do one or the other.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 03:56:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/TWR-K60N512-uart-ISR-triggering-using-mqx-4-0/m-p/266006#M8023</guid>
      <dc:creator>DavidS</dc:creator>
      <dc:date>2013-12-18T03:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: TWR K60N512 uart ISR triggering using mqx 4.0</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/TWR-K60N512-uart-ISR-triggering-using-mqx-4-0/m-p/266007#M8024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;I downloaded the hello.c file and executed the file. Data reception is working properly, but the printf() function used in the ISR function is not printing&amp;nbsp; out&amp;nbsp; the received value and the execution control is not exiting from ISR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void uart5_rx_tx_isr(pointer user_isr_ptr)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//DES should be a global&amp;nbsp;&amp;nbsp; uchar ubUDR;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#if 0 //DES 0=test, 1=default code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if (fstatus( rs232_dev ))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ubUDR = fgetc( rs232_dev );&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;#else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; /* Get the device registers */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; UART_MemMapPtr sci_ptr = _bsp_get_serial_base_address (5); //DES get base address for UART5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ubUDR = sci_ptr-&amp;gt;S1; //DES read status register.&amp;nbsp; Part of two step process to clear the interrupt flag.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ubUDR = sci_ptr-&amp;gt;D; //DES get the character&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; printf("\n%c", ubUDR); //DES print character to "other" ttyN device&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ---------------------------------------------------------------------------------------&amp;gt;not printing out the received value&lt;/P&gt;&lt;P&gt;#endif&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;ISR is working perfectly when commenting out the printf() function used in the ISR function.Also i tried to use the printf () out side the ISR , that also not working properly. It print out only 2 &lt;/SPAN&gt;characters&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;.I tried to use&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _io_serial_int_write&amp;nbsp; to print out data, but this also not working properly.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Thanks and Regards&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;Shiju C G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 12:15:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/TWR-K60N512-uart-ISR-triggering-using-mqx-4-0/m-p/266007#M8024</guid>
      <dc:creator>shiju_cg</dc:creator>
      <dc:date>2013-12-18T12:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: TWR K60N512 uart ISR triggering using mqx 4.0</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/TWR-K60N512-uart-ISR-triggering-using-mqx-4-0/m-p/266008#M8025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shiju,&lt;/P&gt;&lt;P&gt;I suspect your board header file or user_config.h isn't setup correctly.&lt;/P&gt;&lt;P&gt;For this example (again I'm using the TWR-K60D100M[newer silicon] but should be same for TWRK60N512[older silicon]).&lt;/P&gt;&lt;P&gt;Please verify that you are getting the "hello" and "world" printf's working first that output via the TWR-SER card.&lt;/P&gt;&lt;P&gt;The OSBDM serial interface is the input and should be able to echo the OSBDM character to the TWR-SER card.&lt;/P&gt;&lt;P&gt;Once you have verified the two headers above have been configured correctly, clean your RTOS and re-build it, then re-build your hello MQX application and test.&lt;/P&gt;&lt;P&gt;user_config.h&lt;span class="lia-inline-image-display-wrapper" image-alt="ScreenHunter_48 Dec. 18 07.35.gif"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/41107iBEE2BBCEA85A35E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="ScreenHunter_48 Dec. 18 07.35.gif" alt="ScreenHunter_48 Dec. 18 07.35.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="ScreenHunter_47 Dec. 18 07.35.gif"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/41178iF9EB40CF369D9C58/image-size/large?v=v2&amp;amp;px=999" role="button" title="ScreenHunter_47 Dec. 18 07.35.gif" alt="ScreenHunter_47 Dec. 18 07.35.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;twrk60d100m.h&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 13:44:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/TWR-K60N512-uart-ISR-triggering-using-mqx-4-0/m-p/266008#M8025</guid>
      <dc:creator>DavidS</dc:creator>
      <dc:date>2013-12-18T13:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: TWR K60N512 uart ISR triggering using mqx 4.0</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/TWR-K60N512-uart-ISR-triggering-using-mqx-4-0/m-p/266009#M8026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;I used&amp;nbsp; #define CUSTOMER_CODE&amp;nbsp; 0 and print out both "hello" and "world". When i changed #define CUSTOMER_CODE 1 the control goes in to ISR before getting a character . ISR triggering,&amp;nbsp; without receiving a character, this happens only if printf function is used, else it works very well. Here i attached my source code.In it the printf in the while(1) loop works only once and it can printout only the first letter. ISR is working updating data properly.I have attached the source file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;Thanks and Regards&lt;/SPAN&gt;, !&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Shiju C G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Dec 2013 10:50:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/TWR-K60N512-uart-ISR-triggering-using-mqx-4-0/m-p/266009#M8026</guid>
      <dc:creator>shiju_cg</dc:creator>
      <dc:date>2013-12-19T10:50:58Z</dc:date>
    </item>
  </channel>
</rss>

