<?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>LPC MicrocontrollersのトピックRe: Cannot Compile any I2C for LPC1112/102</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582778#M20735</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lumen on Sun Jun 21 07:07:25 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, But does that mean this code cannot, OR should not be used ? or that the peripheral cannot be used ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ie am I expected to implement the full I2C myself&amp;nbsp; ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please be plain as the I2C functions are all available in LPCxpresso 4.x &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dave&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 20:21:52 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T20:21:52Z</dc:date>
    <item>
      <title>Cannot Compile any I2C for LPC1112/102</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582776#M20733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lumen on Sun Jun 21 03:57:22 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello, I am trying to port my code from LPCxpresso 4.x to the most recent 7.x. for MCPU LPC1112/102, and I am getting errors that make no sense to me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I found the post &lt;/SPAN&gt;&lt;A href="http://http://www.lpcware.com/content/forum/lpcopen-what-am-i-missing?destination=node%2F1106580" rel="nofollow noopener noreferrer" target="_blank"&gt;here&lt;/A&gt;&lt;SPAN&gt; and followed instructions to install the missing header files for LPC11xx&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have enabled the #define CHIP_LPC110X (and disabled the rest and also undefined the define BOARD_NXP_XPRESSO_11C24) and enabled Chip_SystemInit(); &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Most of the examples compile, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Most of my code compiles, using various LCopen libraries .. UART, SPP, GPIO etc but NOT the i2c example or code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I just don,t get it ....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If I compile the example peripheral I2C, error as follows :-&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;#define DEFAULT_I2C&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I2CO&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;!!!error reported by little red cross is&lt;/SPAN&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt; "I2C0" undeclared here (not in a function)&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Its a #define how is the example code in error ....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In my code I have ......&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;NVIC_EnableIRQ(TIMER_32_0_IRQN);
NVIC_EnableIRQ(IC20_IRQN);&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;before compile the parameters are in blue italic ...&amp;nbsp; hovering over the 1st I get the number 18, over the second I get the number 15.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;after compile, the error reported for the second line is&lt;/SPAN&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt; "Multiple markers at this line&lt;BR /&gt;- each undeclared identifier is reported only once for each function it &lt;BR /&gt; appears in"&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and hovering over the STILL blue IC20_IRQN says 'I2C0_IRQn' undeclared (first use in this function) despite the editor reporting its value as 15 a moment before.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried looking for the declarations for those parameters and eventually I found ..&amp;nbsp; RESERVED15_IRQn = 15 in cmsis110x.h !&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Questions...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Why is there NO I2C0_IRQn in the enumeration ...&amp;nbsp; it is in my OLD Xpresso v4.0 LPC111c.h ...&amp;nbsp; The peripheral is usable ? or not ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Why does the example code fall over on a simple define .... #define DEFAULT_I2C&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I2CO&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;3) All the I2C example code is greyed by lines like &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#if !defined(CHIP_LPC110X)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Does this mean that NONE of the LCOPEN example code may be used for LPC1112, or that LPC1112 I2C should not be used ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for your considerations, and assistances,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dave&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:21:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582776#M20733</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Compile any I2C for LPC1112/102</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582777#M20734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by R2D2 on Sun Jun 21 04:32:38 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Lumen&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;I have enabled the #define CHIP_LPC110X&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;I just don,t get it ....&lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i2c_11xx.h:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;/** @defgroup I2C_11XX CHIP: LPC11xx I2C driver
 * @ingroup CHIP_11XX_Drivers
 * @{
 */

#if [color=#f00]!defined(CHIP_LPC110X)[/color]
....&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:21:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582777#M20734</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Compile any I2C for LPC1112/102</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582778#M20735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lumen on Sun Jun 21 07:07:25 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, But does that mean this code cannot, OR should not be used ? or that the peripheral cannot be used ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ie am I expected to implement the full I2C myself&amp;nbsp; ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please be plain as the I2C functions are all available in LPCxpresso 4.x &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dave&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:21:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582778#M20735</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Compile any I2C for LPC1112/102</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582779#M20736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by R2D2 on Sun Jun 21 07:18:45 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Lumen&lt;/STRONG&gt;&lt;BR /&gt;Yes, But does that mean this code cannot, OR should not be used ?&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; :D &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;AFAIK there's no I2C in LPC110X&amp;nbsp; :O &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So which MCU are you trying to use and what's happening if you use this LPCOpen library&amp;nbsp; :quest:&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:21:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582779#M20736</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Compile any I2C for LPC1112/102</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582780#M20737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lumen on Sun Jun 21 07:41:00 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you R2D2,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; I am using a LPC1112FHN33/102. The UM indicates I2C is present. So I must have the incorrect CHIP define :-(&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Which CHIP define should I be using ???&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dave.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:21:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582780#M20737</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Compile any I2C for LPC1112/102</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582781#M20738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by R2D2 on Sun Jun 21 07:59:58 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Lumen&lt;/STRONG&gt;&lt;BR /&gt;The UM indicates I2C is present.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good news&amp;nbsp; :) &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure how LPC1112 I2C differs from LPC1114 I2C, so I would use the original LPC11C24 I2C sample (including Board library) and just change the MCU...&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:21:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582781#M20738</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Compile any I2C for LPC1112/102</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582782#M20739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lumen on Sun Jun 21 08:20:24 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you. I am doing exactly that..&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;Just change the cpu&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes the cpu is set as LPC1112/102 as I can see in the BLUE test bottom right of IDE&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;so the other place to set a CPU is in sys_config.h&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#ifndef __SYS_CONFIG_H_&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#define __SYS_CONFIG_H_&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Pick only one. Build for LPC11CXX family */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;define CHIP_LPC110X&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// #define CHIP_LPC11XXLV&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// #define CHIP_LPC1125&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// #define CHIP_LPC11AXX&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//#define CHIP_LPC11CXX&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// #define CHIP_LPC11EXX&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// #define CHIP_LPC11UXX&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#endif /* __SYS_CONFIG_H_ */&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I still get error: unknown type name 'I2C_ID_T' which I expect cos I am using the incorrect CHIP define for the I2Cxx.h headers ....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;WHICH CHIP define should I use ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The CHIP is labelled LPC1112F&amp;nbsp;&amp;nbsp; 102&amp;nbsp;&amp;nbsp; there is no A,C or U between the LPC11 and the 12 ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:21:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582782#M20739</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Compile any I2C for LPC1112/102</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582783#M20740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by R2D2 on Sun Jun 21 08:30:15 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Lumen&lt;/STRONG&gt;&lt;BR /&gt; I am doing exactly that..&amp;nbsp; &lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Nope...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That's the original file:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: &lt;/STRONG&gt;&lt;BR /&gt;#ifndef __SYS_CONFIG_H_&lt;BR /&gt;#define __SYS_CONFIG_H_&lt;BR /&gt;&lt;BR /&gt;/* Pick only one. Build for LPC11CXX family */&lt;BR /&gt;// #define CHIP_LPC110X&lt;BR /&gt;// #define CHIP_LPC11XXLV&lt;BR /&gt;// #define CHIP_LPC1125&lt;BR /&gt;// #define CHIP_LPC11AXX&lt;BR /&gt;&lt;STRONG&gt;[color=#f00]#define CHIP_LPC11CXX[/color]&lt;/STRONG&gt;&lt;BR /&gt;// #define CHIP_LPC11EXX&lt;BR /&gt;// #define CHIP_LPC11UXX&lt;BR /&gt;&lt;BR /&gt;#endif /* __SYS_CONFIG_H_ */&lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:21:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582783#M20740</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Compile any I2C for LPC1112/102</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582784#M20741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lumen on Sun Jun 21 08:49:27 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a LPC1112FDN33/102&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Which chip define SHOULD be be using ??&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dave&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:21:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582784#M20741</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Compile any I2C for LPC1112/102</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582785#M20742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by R2D2 on Sun Jun 21 08:51:53 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Lumen&lt;/STRONG&gt;&lt;BR /&gt;Which chip define SHOULD be be using ??&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;#define CHIP_LPC11CXX&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:21:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582785#M20742</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Compile any I2C for LPC1112/102</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582786#M20743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lumen on Sun Jun 21 08:53:27 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a LPC1112FDN33/102&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Which chip define SHOULD I be using ??&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dave&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:21:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582786#M20743</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Compile any I2C for LPC1112/102</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582787#M20744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by R2D2 on Sun Jun 21 08:59:34 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Lumen&lt;/STRONG&gt;&lt;BR /&gt;Which chip define SHOULD I be using ??&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;[color=#f00]CHIP_LPC11CXX[/color]&lt;/STRONG&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:21:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582787#M20744</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot Compile any I2C for LPC1112/102</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582788#M20745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lumen on Sun Jun 21 09:05:01 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you R2D2.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, I get a better result.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How would I know logically to use LPC11CXX, I don't have CAN bus ......&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dave.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:21:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Cannot-Compile-any-I2C-for-LPC1112-102/m-p/582788#M20745</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:21:58Z</dc:date>
    </item>
  </channel>
</rss>

