* README: Added NCS.

* Makefile.am, configure.ac, preinstall.am: Added BSP variants.
	* console/console-config.c, clock/clock-config.c, ssp/ssp.c: Fixed
	register settings.  Cleanup.
	* include/bsp.h: Added network defines and functions.
	* include/lpc24xx.h: Added AHB and EMC defines.  Fixed Ethernet status
	sizes.
	* include/system-clocks.h, misc/system-clocks.c: Added micro seconds
	delay function that uses Timer 1.  Changed PLL setup.
	* network/network.c, startup/bspreset.c, startup/linkcmds.lpc2478,
	startup/linkcmds.lpc2478_ncs, startup/linkcmds.lpc2478_ncs_ram: New
	files.
	* startup/bspstart.c: Added EMC initialization.  Changes for ROM boot.
This commit is contained in:
Thomas Doerfler
2009-02-27 11:26:44 +00:00
parent 92cbf96514
commit 9647f7feac
23 changed files with 637 additions and 126 deletions

View File

@@ -41,6 +41,9 @@ extern "C" {
#define ARE_FLAGS_SET( val, flags) \
(((val) & (flags)) == (flags))
#define IS_ANY_FLAG_SET( val, flags) \
(((val) & (flags)) != 0)
#define ARE_FLAGS_CLEARED( val, flags) \
(((val) & (flags)) == 0)