<?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: KEIL with LPC43xx?</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564639#M16922</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MikeSimmonds on Mon Aug 31 06:42:40 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Again, I am not the best person to ask, but LPCXpresso is free to download for up to 256K of code debugging.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;And the LPC-Link2 debug probe is cheap [15 Euro from Embedded Artists, a bit more from Farnell (Element14)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;or Mouser or Digikey] which is the main supported adapter for LPCXresso.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd suggest that getting one would be a sound investment in that all of the LPCOpen etc. examples may be&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;tried.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I do not know Keil at all. NB some of the Keil compiler directives have different syntax etc.in LPCXpresso so look&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;into that if 'porting' from one to the other.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards, Mike.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 18:49:39 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T18:49:39Z</dc:date>
    <item>
      <title>KEIL with LPC43xx?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564633#M16916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Algorithm on Fri Aug 28 17:11:47 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hey guys , I'm using LPC4357 , and my IDE is Keil Microvision4 . When I start debugging, some registers are not in their reset states (nothing is called before main) like CCU1 registers. I wonder is this has anything to do with KEIL? or I need to upgrade to a newer version? or there is sth better than Keil for LPC ? . &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thx in advance&amp;nbsp; &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:49:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564633#M16916</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: KEIL with LPC43xx?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564634#M16917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by vtw.433e on Sat Aug 29 01:09:21 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Use LPCXpresso? &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:49:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564634#M16917</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: KEIL with LPC43xx?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564635#M16918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by djrose on Sat Aug 29 02:28:53 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;With Keil MDK there is a lot that can go on before you get to main.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The module 'startup_lpc43xx.s has this for a reset handler:&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;Reset_Handler&amp;nbsp;&amp;nbsp; PROC
&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; LDR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; R0, =SystemInit
&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; BLX&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; R0
&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; LDR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; R0, =__main
&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; BX&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; R0
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;SystemInit (in system_LPC43xx.c) sets up hardware and __main is part of the C library that executes the runtime startup initialisation and subsequently calls main.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to see the processor on entry to the code (and not at main), uncheck the 'run to main' option in the 'Options for Target' dialog.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:49:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564635#M16918</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: KEIL with LPC43xx?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564636#M16919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Algorithm on Sat Aug 29 03:35:29 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thx djrose . I already know that , and I commented the SystemInit . The problem is that in debugging some registers are not in their reset state, like the CCU1 registers. &lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:49:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564636#M16919</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: KEIL with LPC43xx?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564637#M16920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MikeSimmonds on Sun Aug 30 02:29:34 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;The ROM boot code will always run before handing over to user code!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have not really got into 43XX yet, but I am sure that the UM has a boot flowchart&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;which implies that the cpu is always set to 96 MHz initially.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Therefore I would expect at least some of the clock generation unit registers to be&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;altered with respect to absolute chip reset status.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;HTH, Mike.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:49:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564637#M16920</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: KEIL with LPC43xx?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564638#M16921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Algorithm on Sun Aug 30 05:20:47 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;U have a point Mike, but according to the flow chart, and the Boot pins, I'm booting from the internal flash . Well , I noticed that as soon as I read from or write to the CCU1 registers , debugging would fail. This is the first time in encounter such situation. I'm using Keil 4 and JLINK and I used to program ST chips for yrs, but this never happens. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Does LPCexpresso has JLINK support? and is it free?&amp;nbsp; &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:49:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564638#M16921</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: KEIL with LPC43xx?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564639#M16922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MikeSimmonds on Mon Aug 31 06:42:40 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Again, I am not the best person to ask, but LPCXpresso is free to download for up to 256K of code debugging.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;And the LPC-Link2 debug probe is cheap [15 Euro from Embedded Artists, a bit more from Farnell (Element14)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;or Mouser or Digikey] which is the main supported adapter for LPCXresso.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd suggest that getting one would be a sound investment in that all of the LPCOpen etc. examples may be&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;tried.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I do not know Keil at all. NB some of the Keil compiler directives have different syntax etc.in LPCXpresso so look&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;into that if 'porting' from one to the other.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards, Mike.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:49:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564639#M16922</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: KEIL with LPC43xx?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564640#M16923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MikeSimmonds on Mon Aug 31 06:46:14 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, I think that the 43xx defaults to JTAG over SWD and isn't JTAG speed sensitive so that&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if you change clock speed on it in mid debug it will have problems.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 18:49:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/KEIL-with-LPC43xx/m-p/564640#M16923</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T18:49:40Z</dc:date>
    </item>
  </channel>
</rss>

