LPC1347 LPCXpresso board

General discussions about working with the Astrobe IDE and programming ARM Cortex-M0, M3, M4 and M7 microcontrollers.
Post Reply
cfbsoftware
Site Admin
Posts: 493
Joined: Fri Dec 31, 2010 12:30 pm
Contact:

LPC1347 LPCXpresso board

Post by cfbsoftware » Sat Aug 18, 2012 3:03 am

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.

cfbsoftware
Site Admin
Posts: 493
Joined: Fri Dec 31, 2010 12:30 pm
Contact:

Re: LPC1347 LPCXpresso board

Post by cfbsoftware » Fri Aug 24, 2012 1:50 pm

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

Post Reply