Page 1 of 1

LPC1347 LPCXpresso board

Posted: Sat Aug 18, 2012 3:03 am
by cfbsoftware
The next release (v4.3) of Astrobe for Cortex-M3 will include library modules and examples for the latest LPC1347 LPCXpresso board recently announced by Embedded Artists.

Consequently you will be able to target the new LPC1347, LPC1346, LPC1345, LPC1317, LPC1316 and LPC1315 MCUs.

Re: LPC1347 LPCXpresso board

Posted: Fri Aug 24, 2012 1:50 pm
by cfbsoftware
Our LPC1347 LPCXpresso board arrived today. All of the general examples have now been successfully tested on it. The main loop of Blinker is now even simpler using the LPC1347's GPIO port0 toggle register NOT which toggles the value of a pin:

Code: Select all

  WHILE TRUE DO
    SYSTEM.PUT(MCU.GPIO0NOT, ledBit);
    Timer.MSecDelay(500);
  END