/**********************************************************************
* $Id$		abstract.txt		2012-10
*//**
* @file		abstract.txt
* @brief	Example description file
* @version	2.10
* @date		Oct. 2012
* @author	NXP MCU Application Team
*
* Copyright(C) 2012, NXP Semiconductor
* All rights reserved.
*
***********************************************************************
* Software that is described herein is for illustrative purposes only
* which provides customers with programming information regarding the
* products. This software is supplied "AS IS" without any warranties.
* NXP Semiconductors assumes no responsibility or liability for the
* use of the software, conveys no license or title under any patent,
* copyright, or mask work right to the product. NXP Semiconductors
* reserves the right to make changes in the software without
* notification. NXP Semiconductors also make no representation or
* warranty that such application will be suitable for the specified
* use without further testing or modification.
* Permission to use, copy, modify, and distribute this software and its
* documentation is hereby granted, under NXP Semiconductors'
* relevant copyright in the software, without fee, provided that it
* is used in conjunction with NXP Semiconductors microcontrollers.  This
* copyright, permission, and disclaimer notice must appear in all copies of
* this code.
**********************************************************************/
  
@Example description:
	Purpose:
		This example describes how to use UART with SGPIO
	Process:
		UART with SGPIO configuration:
			 9600bps (also support 19200,38400,57600,115200)
			 8 data bit 
			 No parity 
			 1 stop bit 
			 No flow control 
					
		UART will print welcome screen first, then:
			- press '1' key for half duplex mode and '2' for full duplex mode
				- in half duplex mode:
					- press any key to have it read in from the terminal and returned back to the terminal.
					- Press ESC to exit.
				- in full duplex mode:
					- won't sending until press any key and then exit
		
@Directory contents:
	\Keil:	includes Keil project and configuration files 	
	\IAR:	(not validated yet)
	lpc43xx_libcfg.h: Library configuration file - include needed driver library for this example 
	SPGIO_Uart_demo.c: Main program

@How to run:
	Hardware configuration:		
		This example was tested on:
			MCB4300 board
			U-Link2 on Keil
				
		Serial display configuration: (putty is recommendded) 
			 9600bps 
			 8 data bit 
			 No parity 
			 1 stop bit 
			 No flow control 
				
	Running mode:
		On Keil
			Internal SRAM mode:	This example can run on Internal SRAM mode.
						All files must be build to .elf file, this file will be loaded into Internal SRAM through a
						debugger tool before running
						
	Step to run:
		- Step 1: Build example.
		- Step 2: Connect UART0 port on this board to COM port on your computer; Connet jumper J13 and J16 to UART0
		- Step 3: Configure hardware and serial display as above instruction 
		- Step 4: start debug session
		- Step 5: Run example, as above process of example description
		
@Tip:
	- Open \Keil\*.uvproj project file to run example on Keil
	
	