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.
LPC1347 LPCXpresso board
-
- Site Admin
- Posts: 517
- Joined: Fri Dec 31, 2010 12:30 pm
- Contact:
-
- Site Admin
- Posts: 517
- Joined: Fri Dec 31, 2010 12:30 pm
- Contact:
Re: LPC1347 LPCXpresso board
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