//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//+
//+   Copyright (c) CML Microsystems Plc 2015
//+
//+   This firmware was designed by CML Microcircuits (UK) Ltd, based on
//+   UK originated technology and is only intended for use on CML’s  Evaluation kits.
//+
//+   The supply and use of this Firmware is subject to CML's
//+   Licence Agreement, a copy of which can be obtained from CML on request.
//+
//+   Contact details:
//+   Technical:  techsupport@cmlmicro.com
//+   Sales:  sales@cmlmicro.com
//+
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


	THIS LIBRARY REQUIRES THE FOLLOWING LIBRARIES : 
		- lpc_chip_43xx			---	version 05/15/2014
		- lpc_chip_43xx_m0		---	version 05/15/2014
	These libraries are provided with this library. Both libraries are part of the
	LPC_OPEN drivers provided by NXP community. 
	A few changes were done to set the clock properly and fit the driver with the
	Sd card hardware configuration of the Pe0003.
	 

	WARNING - sysinit.c in an lpcopen project should be replaced or deleted for using ../src/sysinit.c

Folders:
	fs - Filesystem folder to be used with the sdcard. This file system is the ChanFS version for FAT32.
	inc - Libraries for the board PE0003.
	src - Source code of the libraries.
	

Notes:
	- In the PE0003 board the sd card not make use of the card detect pin, therefore a modification in 
	  the sdio.c file of the LPC43xxdriver must be done. 
	  Commented it out the following lines
	   
	  	  		int sdio_card_detect(void)
				{
					/* No card = high state in regsiter */		
					//	if (LPC_SDMMC->CDETECT & 1)
						//return 0;
					return 1;
				}
				
	- Wait.c file can be required  by the sd card to implement a time control.   




Releases:
	v1.0  - First release 
	v1.01 - Bug found in gpio.c library missing reference to "pe0003_config.h". It was avoiding the activation of the GPIO interrupt 
	
	