<?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>LPCXpresso IDEのトピックRe: Problem</title>
    <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558898#M15212</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Ex-Zero on Fri Sep 07 04:29:15 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;And did you enable vector catch and switch to ISP already?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See: &lt;/SPAN&gt;&lt;A href="http://"&gt;http://support.code-red-tech.com/CodeRedWiki/DebugAccessChip&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 22:15:49 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T22:15:49Z</dc:date>
    <item>
      <title>Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558897#M15211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by andrei.badila on Fri Sep 07 02:53:56 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm use NXP LPC1114 and Any program that I want to write on the board gives me : Errror launching Debug\xxx.axf &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;02: Failed on connect : Ee(07). Bad Ack returned from status -wire error.:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I mention that I changed cable, USB port and same problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Also mention that after I wrote the following program on board began to show error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Some ideea? Thanks very much!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;void SSP_LoopbackTest( uint8_t portNum )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; uint32_t i;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; if ( portNum == 0 )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; while(1){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#if !USE_CS&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; /* Set SSEL pin to output low. */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; GPIOSetValue( PORT0, 2, 0 );&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; GPIOSetValue( PORT0, 2, 1 );&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; for ( i = 0; i &amp;lt; 0x25; i++ );&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; GPIOSetValue( PORT0, 2, 0 );&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#endif&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; i = 0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; src_addr[0]=0x12;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; src_addr[1]=0xFF;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; while ( i &amp;lt;= SSP_BUFSIZE )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;/* to check the RXIM and TXIM interrupt, I send a block data at one time &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;based on the FIFOSIZE(8). */&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; SSP_Send( portNum, (uint8_t *)&amp;amp;src_addr&lt;/SPAN&gt;&lt;I&gt;, FIFOSIZE );&lt;BR /&gt;/* If RX interrupt is enabled, below receive routine can be&lt;BR /&gt;also handled inside the ISR. */&lt;BR /&gt;//&amp;nbsp; SSP_Receive( portNum, (uint8_t *)&amp;amp;dest_addr&lt;I&gt;, FIFOSIZE );&lt;BR /&gt;i += FIFOSIZE;&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;#if !USE_CS&lt;BR /&gt;&amp;nbsp; /* Set SSEL pin to output high. */&lt;BR /&gt;&amp;nbsp; GPIOSetValue( PORT0, 2, 1 );&lt;BR /&gt;#endif&lt;BR /&gt;&amp;nbsp; }}&lt;BR /&gt;&amp;nbsp; else&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;#if !USE_CS&lt;BR /&gt;/* Set SSEL pin to output low. */&lt;BR /&gt;GPIOSetValue( PORT2, 0, 0 );&lt;BR /&gt;#endif&lt;BR /&gt;i = 0;&lt;BR /&gt;while ( i &amp;lt;= SSP_BUFSIZE )&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; /* to check the RXIM and TXIM interrupt, I send a block data at one time&lt;BR /&gt;&amp;nbsp; based on the FIFOSIZE(8). */&lt;BR /&gt;&amp;nbsp; SSP_Send( portNum, (uint8_t *)&amp;amp;src_addr&lt;I&gt;, FIFOSIZE );&lt;BR /&gt;&amp;nbsp; /* If RX interrupt is enabled, below receive routine can be&lt;BR /&gt;&amp;nbsp; also handled inside the ISR. */&lt;BR /&gt;&amp;nbsp; SSP_Receive( portNum, (uint8_t *)&amp;amp;dest_addr&lt;I&gt;, FIFOSIZE );&lt;BR /&gt;&amp;nbsp; i += FIFOSIZE;&lt;BR /&gt;}&lt;BR /&gt;#if !USE_CS&lt;BR /&gt;/* Set SSEL pin to output high. */&lt;BR /&gt;GPIOSetValue( PORT2, 0, 1 );&lt;BR /&gt;#endif&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; return;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;/*****************************************************************************&lt;BR /&gt;** Function name:SEEPROMTest&lt;BR /&gt;**&lt;BR /&gt;** Descriptions:Serial EEPROM(Atmel 25xxx) test&lt;BR /&gt;**&lt;BR /&gt;** parameters:port #&lt;BR /&gt;** Returned value:None&lt;BR /&gt;** &lt;BR /&gt;*****************************************************************************/&lt;BR /&gt;void SSP_SEEPROMTest( uint8_t portNum )&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; uint32_t i, timeout;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; if ( portNum == 0 )&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp; LPC_IOCON-&amp;gt;PIO0_2 &amp;amp;= ~0x07;/* SSP SSEL is a GPIO pin */&lt;BR /&gt;&amp;nbsp; GPIOSetValue( PORT0, 2, 1 );&lt;BR /&gt;&amp;nbsp; /* port0, bit 2 is set to GPIO output and high */&lt;BR /&gt;&amp;nbsp; GPIOSetDir( PORT0, 2, 1 );&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; GPIOSetValue( PORT0, 2, 0 );&lt;BR /&gt;&amp;nbsp; /* Test Atmel 25016 SPI SEEPROM. */&lt;BR /&gt;&amp;nbsp; src_addr[0] = WREN;/* set write enable latch */&lt;BR /&gt;SSP_Send( portNum, (uint8_t *)src_addr, 1 );&lt;BR /&gt;&amp;nbsp; GPIOSetValue( PORT0, 2, 1 );&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; for ( i = 0; i &amp;lt; DELAY_COUNT; i++ );/* delay minimum 250ns */&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; GPIOSetValue( PORT0, 2, 0 );&lt;BR /&gt;&amp;nbsp; src_addr[0] = RDSR;/* check status to see if write enabled is latched */&lt;BR /&gt;SSP_Send( portNum, (uint8_t *)src_addr, 1 );&lt;BR /&gt;SSP_Receive( portNum, (uint8_t *)dest_addr, 1 );&lt;BR /&gt;&amp;nbsp; GPIOSetValue( PORT0, 2, 1 );&lt;BR /&gt;if ( (dest_addr[0] &amp;amp; (RDSR_WEN|RDSR_RDY)) != RDSR_WEN )&lt;BR /&gt;&amp;nbsp; /* bit 0 to 0 is ready, bit 1 to 1 is write enable */&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;while ( 1 );&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; for ( i = 0; i &amp;lt; SSP_BUFSIZE; i++ )/* Init RD and WR buffer */&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;src_addr[i+3] = i;/* leave three bytes for cmd and offset(16 bits) */&lt;BR /&gt;dest_addr&lt;I&gt; = 0;&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; /* please note the first two bytes of WR and RD buffer is used for&lt;BR /&gt;&amp;nbsp; commands and offset, so only 2 through SSP_BUFSIZE is used for data read,&lt;BR /&gt;&amp;nbsp; write, and comparison. */&lt;BR /&gt;&amp;nbsp; GPIOSetValue( PORT0, 2, 0 );&lt;BR /&gt;&amp;nbsp; src_addr[0] = WRITE;/* Write command is 0x02, low 256 bytes only */&lt;BR /&gt;&amp;nbsp; src_addr[1] = 0x00;/* write address offset MSB is 0x00 */&lt;BR /&gt;&amp;nbsp; src_addr[2] = 0x00;/* write address offset LSB is 0x00 */&lt;BR /&gt;SSP_Send( portNum, (uint8_t *)src_addr, SSP_BUFSIZE );&lt;BR /&gt;&amp;nbsp; GPIOSetValue( PORT0, 2, 1 );&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; for ( i = 0; i &amp;lt; 0x30000; i++ );/* delay, minimum 3ms */&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; timeout = 0;&lt;BR /&gt;&amp;nbsp; while ( timeout &amp;lt; MAX_TIMEOUT )&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;GPIOSetValue( PORT0, 2, 0 );&lt;BR /&gt;src_addr[0] = RDSR;/* check status to see if write cycle is done or not */&lt;BR /&gt;&amp;nbsp; SSP_Send( portNum, (uint8_t *)src_addr, 1);&lt;BR /&gt;&amp;nbsp; SSP_Receive( portNum, (uint8_t *)dest_addr, 1 );&lt;BR /&gt;GPIOSetValue( PORT0, 2, 1 );&lt;BR /&gt;if ( (dest_addr[0] &amp;amp; RDSR_RDY) == 0x00 )/* bit 0 to 0 is ready */&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&lt;BR /&gt;}&lt;BR /&gt;timeout++;&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; if ( timeout == MAX_TIMEOUT )&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;while ( 1 );&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; for ( i = 0; i &amp;lt; DELAY_COUNT; i++ );/* delay, minimum 250ns */&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; GPIOSetValue( PORT0, 2, 0 );&lt;BR /&gt;&amp;nbsp; src_addr[0] = READ;/* Read command is 0x03, low 256 bytes only */&lt;BR /&gt;&amp;nbsp; src_addr[1] = 0x00;/* Read address offset MSB is 0x00 */&lt;BR /&gt;&amp;nbsp; src_addr[2] = 0x00;/* Read address offset LSB is 0x00 */&lt;BR /&gt;SSP_Send( portNum, (uint8_t *)src_addr, 3 ); &lt;BR /&gt;SSP_Receive( portNum, (uint8_t *)&amp;amp;dest_addr[3], SSP_BUFSIZE-3 );&lt;BR /&gt;&amp;nbsp; GPIOSetValue( PORT0, 2, 1 );&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; else/* Port 1 */&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;LPC_IOCON-&amp;gt;PIO2_0 &amp;amp;= ~0x07;/* SSP SSEL is a GPIO pin */&lt;BR /&gt;GPIOSetValue( PORT2, 0, 1 );&lt;BR /&gt;/* port0, bit 2 is set to GPIO output and high */&lt;BR /&gt;GPIOSetDir( PORT2, 0, 1 );&lt;BR /&gt;&lt;BR /&gt;GPIOSetValue( PORT2, 0, 0 );&lt;BR /&gt;/* Test Atmel 25016 SPI SEEPROM. */&lt;BR /&gt;src_addr[0] = WREN;/* set write enable latch */&lt;BR /&gt;SSP_Send( portNum, (uint8_t *)src_addr, 1 );&lt;BR /&gt;GPIOSetValue( PORT2, 0, 1 );&lt;BR /&gt;&lt;BR /&gt;for ( i = 0; i &amp;lt; DELAY_COUNT; i++ );/* delay minimum 250ns */&lt;BR /&gt;&lt;BR /&gt;GPIOSetValue( PORT2, 0, 0 );&lt;BR /&gt;src_addr[0] = RDSR;/* check status to see if write enabled is latched */&lt;BR /&gt;SSP_Send( portNum, (uint8_t *)src_addr, 1 );&lt;BR /&gt;SSP_Receive( portNum, (uint8_t *)dest_addr, 1 );&lt;BR /&gt;GPIOSetValue( PORT2, 0, 1 );&lt;BR /&gt;if ( (dest_addr[0] &amp;amp; (RDSR_WEN|RDSR_RDY)) != RDSR_WEN )&lt;BR /&gt;/* bit 0 to 0 is ready, bit 1 to 1 is write enable */&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp; while ( 1 );&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;for ( i = 0; i &amp;lt; SSP_BUFSIZE; i++ )/* Init RD and WR buffer */&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; src_addr[i+3] = i;/* leave three bytes for cmd and offset(16 bits) */&lt;BR /&gt;&amp;nbsp; dest_addr&lt;I&gt; = 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;/* please note the first two bytes of WR and RD buffer is used for&lt;BR /&gt;commands and offset, so only 2 through SSP_BUFSIZE is used for data read,&lt;BR /&gt;write, and comparison. */&lt;BR /&gt;GPIOSetValue( PORT2, 0, 0 );&lt;BR /&gt;src_addr[0] = WRITE;/* Write command is 0x02, low 256 bytes only */&lt;BR /&gt;src_addr[1] = 0x00;/* write address offset MSB is 0x00 */&lt;BR /&gt;src_addr[2] = 0x00;/* write address offset LSB is 0x00 */&lt;BR /&gt;SSP_Send( portNum, (uint8_t *)src_addr, SSP_BUFSIZE );&lt;BR /&gt;GPIOSetValue( PORT2, 0, 1 );&lt;BR /&gt;&lt;BR /&gt;for ( i = 0; i &amp;lt; 0x30000; i++ );/* delay, minimum 3ms */&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;timeout = 0;&lt;BR /&gt;while ( timeout &amp;lt; MAX_TIMEOUT )&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp; GPIOSetValue( PORT2, 0, 0 );&lt;BR /&gt;&amp;nbsp; src_addr[0] = RDSR;/* check status to see if write cycle is done or not */&lt;BR /&gt;&amp;nbsp; SSP_Send( portNum, (uint8_t *)src_addr, 1);&lt;BR /&gt;&amp;nbsp; SSP_Receive( portNum, (uint8_t *)dest_addr, 1 );&lt;BR /&gt;&amp;nbsp; GPIOSetValue( PORT2, 0, 1 );&lt;BR /&gt;&amp;nbsp; if ( (dest_addr[0] &amp;amp; RDSR_RDY) == 0x00 )/* bit 0 to 0 is ready */&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;break;&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; timeout++;&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;if ( timeout == MAX_TIMEOUT )&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp; while ( 1 );&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;for ( i = 0; i &amp;lt; DELAY_COUNT; i++ );/* delay, minimum 250ns */&lt;BR /&gt;&lt;BR /&gt;GPIOSetValue( PORT2, 0, 0 );&lt;BR /&gt;src_addr[0] = READ;/* Read command is 0x03, low 256 bytes only */&lt;BR /&gt;src_addr[1] = 0x00;/* Read address offset MSB is 0x00 */&lt;BR /&gt;src_addr[2] = 0x00;/* Read address offset LSB is 0x00 */&lt;BR /&gt;SSP_Send( portNum, (uint8_t *)src_addr, 3 ); &lt;BR /&gt;SSP_Receive( portNum, (uint8_t *)&amp;amp;dest_addr[3], SSP_BUFSIZE-3 );&lt;BR /&gt;GPIOSetValue( PORT2, 0, 1 );&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; return;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;/******************************************************************************&lt;BR /&gt;**&amp;nbsp;&amp;nbsp; Main Function&amp;nbsp; main()&lt;BR /&gt;******************************************************************************/&lt;BR /&gt;int main (void)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; uint32_t i;&lt;BR /&gt;#if SSP_DEBUG&lt;BR /&gt;&amp;nbsp; int8_t temp[2];&lt;BR /&gt;#endif&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; SystemInit();&lt;BR /&gt;&lt;BR /&gt;#if SSP_DEBUG&lt;BR /&gt;&amp;nbsp; UARTInit(115200);&lt;BR /&gt;#endif&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; SSP_IOConfig( SSP_NUM );/* initialize SSP port, share pins with SPI1&lt;BR /&gt;on port2(p2.0-3). */&lt;BR /&gt;&amp;nbsp; SSP_Init( SSP_NUM );&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; for ( i = 0; i &amp;lt; SSP_BUFSIZE; i++ )&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;src_addr&lt;I&gt; = (uint8_t)i;&lt;BR /&gt;dest_addr&lt;I&gt; = 0;&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&lt;BR /&gt;#if TX_RX_ONLY&lt;BR /&gt;&amp;nbsp; /* For the inter-board communication, one board is set as&lt;BR /&gt;&amp;nbsp; master transmit, the other is set to slave receive. */&lt;BR /&gt;#if SSP_SLAVE&lt;BR /&gt;&amp;nbsp; /* Slave receive */&lt;BR /&gt;&amp;nbsp; SSP_Receive( SSP_NUM, (uint8_t *)dest_addr, SSP_BUFSIZE );&lt;BR /&gt;&amp;nbsp; for ( i = 0; i &amp;lt; SSP_BUFSIZE; i++ )&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;if ( src_addr&lt;I&gt; != dest_addr&lt;I&gt; )&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; while ( 1 );/* Verification failure, fatal error */&lt;BR /&gt;} &lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;#else&lt;BR /&gt;&amp;nbsp; /* Master transmit */&lt;BR /&gt;&amp;nbsp; SSP_Send( SSP_NUM, (uint8_t *)src_addr, SSP_BUFSIZE);&lt;BR /&gt;#endif&lt;BR /&gt;#else&lt;BR /&gt;&amp;nbsp; /* TX_RX_ONLY=0, it's either an internal loopback test&lt;BR /&gt;&amp;nbsp; within SSP peripheral or communicate with a serial EEPROM. */&lt;BR /&gt;#if LOOPBACK_MODE&lt;BR /&gt;&amp;nbsp; SSP_LoopbackTest( SSP_NUM );&lt;BR /&gt;#else&lt;BR /&gt;&amp;nbsp; SSP_SEEPROMTest( SSP_NUM );&lt;BR /&gt;&amp;nbsp; /* If SW CLK is used as SSP clock, change the setting before&lt;BR /&gt;&amp;nbsp; serial EEPROM test, restore after the test. */&lt;BR /&gt;#ifdef __JTAG_DISABLED&lt;BR /&gt;&amp;nbsp; LPC_IOCON-&amp;gt;SWCLK_PIO0_10 &amp;amp;= ~0x07;/* Restore SWD CLK */&lt;BR /&gt;#endif&amp;nbsp; &lt;BR /&gt;#endif/* endif NOT LOOPBACK_MODE */&lt;BR /&gt;#if LOOPBACK_MODE&lt;BR /&gt;&amp;nbsp; for ( i = 0; i &amp;lt; SSP_BUFSIZE; i++ )&lt;BR /&gt;#else&lt;BR /&gt;&amp;nbsp; /* for EEPROM test, verifying, ignore the difference in the first &lt;BR /&gt;&amp;nbsp; three bytes which are used as command and parameters. */&lt;BR /&gt;&amp;nbsp; for ( i = 3; i &amp;lt; SSP_BUFSIZE; i++ )&lt;BR /&gt;#endif&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;if ( src_addr&lt;I&gt; != dest_addr&lt;I&gt; )&lt;BR /&gt;{&lt;BR /&gt;#if SSP_DEBUG&lt;BR /&gt;&amp;nbsp; temp[0] = (dest_addr&lt;I&gt; &amp;amp; 0xF0) &amp;gt;&amp;gt; 4;&lt;BR /&gt;&amp;nbsp; if ( (temp[0] &amp;gt;= 0) &amp;amp;&amp;amp; (temp[0] &amp;lt;= 9) )&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;temp[0] += 0x30;&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; else&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;temp[0] -= 0x0A;&lt;BR /&gt;temp[0] += 0x41;&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; temp[1] = dest_addr&lt;I&gt; &amp;amp; 0x0F;&lt;BR /&gt;&amp;nbsp; if ( (temp[1] &amp;gt;= 0) &amp;amp;&amp;amp; (temp[1] &amp;lt;= 9) )&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;temp[1] += 0x30;&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; else&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;temp[1] -= 0x0A;&lt;BR /&gt;temp[1] += 0x41;&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; UARTSend((uint8_t *)&amp;amp;temp[0], 2);&lt;BR /&gt;&amp;nbsp; UARTSend("\r\n", 2);&lt;BR /&gt;#endif&lt;BR /&gt;&amp;nbsp; while( 1 );/* Verification failed */&lt;BR /&gt;}&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;#if SSP_DEBUG&lt;BR /&gt;&amp;nbsp; UARTSend("PASS\r\n", 6);&lt;BR /&gt;#endif&lt;BR /&gt;#endif/* endif NOT TX_RX_ONLY */&lt;BR /&gt;&amp;nbsp; return 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;/******************************************************************************&lt;BR /&gt;**&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;&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; End Of File&lt;BR /&gt;******************************************************************************/&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558897#M15211</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558898#M15212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Ex-Zero on Fri Sep 07 04:29:15 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;And did you enable vector catch and switch to ISP already?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See: &lt;/SPAN&gt;&lt;A href="http://"&gt;http://support.code-red-tech.com/CodeRedWiki/DebugAccessChip&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558898#M15212</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558899#M15213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by andrei.badila on Fri Sep 07 05:49:23 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Zero&lt;/STRONG&gt;&lt;BR /&gt;And did you enable vector catch and switch to ISP already?&lt;BR /&gt;&lt;BR /&gt;See: &lt;A href="http://"&gt;http://support.code-red-tech.com/CodeRedWiki/DebugAccessChip&lt;/A&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry zero i don't found ISP pin( PIN 0.1). Please tell me wherein ISP PIN. I don't&amp;nbsp; speak very good English, please explain to me the steps to do:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"That is, GND the ISP pin, assert RST, then remove the GND to ISP pin. Once in the ISP bootloader, the target clock configuration is stable, and the debug pins are in their default state - you should be able to connect.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Note: The ISP pin is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;P0.1 - for LPC11xx and LPC13xx"&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558899#M15213</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558900#M15214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Ex-Zero on Fri Sep 07 06:07:24 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Then try Google:&lt;/SPAN&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Asta este, GND pini ISP-ul, afirma RST, apoi scoate?i GND la ISP pini. Dupa ce în bootloader ISP-ul, configurare ceasul ?inta este stabila, iar pinii de depanare sunt în starea implicita a acestora - ar trebui sa fie în masura sa se conecteze.&lt;BR /&gt;Nota: PIN-ul ISP este: P0.1 - pentru LPC11xx ?i LPC13xx&lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;SPAN&gt;So just ground ISP pin, reset your board, release ISP pin and try to debug again.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ISP pin P0.1 (or PIO0_1) is described in schematic: &lt;/SPAN&gt;&lt;A href="http://"&gt;http://www.embeddedartists.com/sites/default/files/docs/schematics/LPCXpressoLPC1114revA.pdf&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558900#M15214</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558901#M15215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by andrei.badila on Fri Sep 07 06:14:39 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;The photo of the bord is here&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://"&gt;http://dl.transfer.ro/photo-transfer_ro-07sep-76ab2b.rar&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558901#M15215</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558902#M15216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by andrei.badila on Fri Sep 07 06:24:54 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I have assert gnd to rst, release, and some problem.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558902#M15216</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558903#M15217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Ex-Zero on Fri Sep 07 06:32:53 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: andrei.badila&lt;/STRONG&gt;&lt;BR /&gt;The photo of the bord is here&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://"&gt;http://dl.transfer.ro/photo-transfer_ro-07sep-76ab2b.rar&lt;/A&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And there: &lt;/SPAN&gt;&lt;A href="http://"&gt;http://www.embeddedartists.com/sites/default/files/image/product/xpr_lpc1114.png&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And there: &lt;/SPAN&gt;&lt;A href="http://"&gt;http://www.embeddedartists.com/products/lpcxpresso/lpc1114_xpr.php&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Where you can also find the schematic link I've posted already :)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558903#M15217</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558904#M15218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by andrei.badila on Fri Sep 07 06:46:12 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I font the st, i found the rst, and have conection and release, rezolts some problem&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558904#M15218</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558905#M15219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by andrei.badila on Fri Sep 07 08:57:39 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to instal teem viewer and give full acces to my computer, plese tel&amp;nbsp; if you agreea. My skype name is simionandrei.badila&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558905#M15219</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558906#M15220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Ex-Zero on Fri Sep 07 19:56:15 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;TeamViewer can't help to switch to ISP :rolleyes:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This video describes how to switch your board to ISP: &lt;/SPAN&gt;&lt;A href="http://"&gt;http://youtu.be/chFv1EiZcYo&lt;/A&gt;&lt;A href="http://http://youtu.be/3sqpPYe2RCs"&gt;http://http://youtu.be/3sqpPYe2RCs&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558906#M15220</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558907#M15221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by andrei.badila on Sat Sep 08 08:19:47 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank's for all zero:)! I confused ISP pin with RST pin.:D&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558907#M15221</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558908#M15222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by andrei.badila on Thu Sep 13 11:12:52 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Zero,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have new problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to comunicate by bus spi with da1 module. My problem is i dont know what spi port to use. I use port 1 and 0, and i conect osciloscope to my board( pin mosi , ssel, sck) and this pin not change. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Please give me a ideea thx&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558908#M15222</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558909#M15223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Ex-Zero on Thu Sep 13 11:51:50 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Use Sample in #14 &lt;/SPAN&gt;&lt;A href="http://"&gt;http://knowledgebase.nxp.com/showthread.php?t=2372&lt;/A&gt;&lt;SPAN&gt; to learn how SSP is working ;)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558909#M15223</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558910#M15224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by andrei.badila on Thu Sep 13 13:22:17 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I download your project and the compilator not found this header&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#include "system_LPC11xx.h"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;DescriptionResourcePathLocationType&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;fatal error: system_LPC11xx.h: No such file or directorycr_startup_lpc11.c/LPC11_SPI_4_dummies/srcline 51C/C++ Problem&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558910#M15224</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558911#M15225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Ex-Zero on Thu Sep 13 14:47:50 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;This is a CMSIS 2.0 project and including ${workspace_loc:/CMSISv2p00_LPC11xx/inc} ;)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558911#M15225</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558912#M15226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by andrei.badila on Thu Sep 13 14:54:33 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Zero&lt;/STRONG&gt;&lt;BR /&gt;This is a CMSIS 2.0 project and including ${workspace_loc:/CMSISv2p00_LPC11xx/inc} ;)&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thx very much&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 22:15:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Problem/m-p/558912#M15226</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T22:15:57Z</dc:date>
    </item>
  </channel>
</rss>

