<?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: Custom board and LPC open in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575171#M19181</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 Thu Apr 17 07:38:27 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: bobi-one&lt;/STRONG&gt;&lt;BR /&gt;... none of it content happens.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; :quest: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What does that mean?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Setting a breakpoint there and stepping forward is doing what?&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 20:16:04 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T20:16:04Z</dc:date>
    <item>
      <title>Custom board and LPC open</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575161#M19171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by bobi-one on Mon Apr 14 06:40:41 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So I Want to make custom board library for my board as is for the lpcxpresso(lpc1549).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So I made a copy of the original project and replaced my pins as appropriate in board_sysinit.c.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But after that i noticed that in my project file which is using the new library its Board_Init function is not doing anything, whatever is put in it. How must be declared&amp;nbsp; this function&amp;nbsp; and called in order to work? Am i missing something in the porting process for custom board.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Boyko&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:15:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575161#M19171</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Custom board and LPC open</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575162#M19172</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 Mon Apr 14 07:28:07 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;#1 Copy a working board lib.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#2 Change it. Don't forget to change board name.&lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
/* Board name */
#define BOARD_NXP_LPCXPRESSO_1549 
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;SPAN&gt;in board.h&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#3 Build Debug &amp;amp; Release version&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#4 Change Includes/Libraries of your project or use Smart Update &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That's all. &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:15:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575162#M19172</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Custom board and LPC open</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575163#M19173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by wellsk on Mon Apr 14 09:05:19 MST 2014&lt;/STRONG&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;Board_Init function is not doing anything, whatever is put in it. How must be declared this function and called in order to work?&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Your application needs to call Board_Init() and likely SystemCoreClockUpdate() before that. Board_Init() is not called as part of SystemInit().&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;int main(void)
{
/* initialize the board */
SystemCoreClockUpdate();
Board_Init();
Board_LED_Set(0, false);&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:16:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575163#M19173</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: Custom board and LPC open</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575164#M19174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by bobi-one on Wed Apr 16 05:28:50 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I cannot find why any function from board.c cannot be accessed from my main.c I double checked&amp;nbsp; the board library is included&amp;nbsp; and the include folder. I check that changes in board_sysinit.c work but on board.c ( same location) doesn't.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Boyko&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:16:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575164#M19174</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: Custom board and LPC open</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575165#M19175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by lpcxpresso-support on Wed Apr 16 05:43:01 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;You don't acutally explain what the problem is - for example, are you getting compile/link errors, or is the function not being called?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Please post a project that exhibits this problem, and we will investigate to see what you have done wrong.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:16:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575165#M19175</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Custom board and LPC open</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575166#M19176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by bobi-one on Thu Apr 17 06:21:33 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Non of the functions from board.c are called, its like the file dont exist. Is there specific place in my current project settings to say that when i Include board.h the function body is in board.c&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;also what is the purpose of board_api?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Boyko&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:16:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575166#M19176</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Custom board and LPC open</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575167#M19177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by bobi-one on Thu Apr 17 06:21:58 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Non of the functions from board.c are called, its like the file dont exist. Is there specific place in my current project settings to say that when i Include board.h the function body is in board.c&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;also what is the purpose of board_api?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Boyko&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:16:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575167#M19177</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Custom board and LPC open</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575168#M19178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by lpcxpresso-support on Thu Apr 17 06:39:11 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;As I said in my original email&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PLEASE POST A PROJECT SHOWS THE PROBLEM.&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:16:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575168#M19178</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Custom board and LPC open</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575169#M19179</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 Thu Apr 17 06:41:39 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: bobi-one&lt;/STRONG&gt;&lt;BR /&gt;Non of the functions from board.c are called, its like the file dont exist.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; :quest: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a&amp;nbsp; Board_Init() in your main? Is it executed?&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:16:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575169#M19179</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Custom board and LPC open</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575170#M19180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by bobi-one on Thu Apr 17 07:08:02 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi R2,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;yes there is but it doesn't execute. when i press F3 it opens the body in board.c but when it is called in main none of it content happens.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Boyko&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:16:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575170#M19180</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Custom board and LPC open</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575171#M19181</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 Thu Apr 17 07:38:27 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: bobi-one&lt;/STRONG&gt;&lt;BR /&gt;... none of it content happens.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; :quest: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What does that mean?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Setting a breakpoint there and stepping forward is doing what?&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:16:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Custom-board-and-LPC-open/m-p/575171#M19181</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:16:04Z</dc:date>
    </item>
  </channel>
</rss>

