Hardware requirements
=====================
- Micro USB cable
- LPCXpresso54608 board
- Personal Computer

Board settings
============
No special settings are required.

Prepare the Demo
===============
1.  Connect a micro USB cable between the host PC and the LPC-Link USB port (J8) on the target board.
2.  Open a serial terminal with the following settings:
    - 115200 baud rate
    - 8 data bits
    - No parity
    - One stop bit
    - No flow control
	
	RealTerm terminal program was used in this example. Select Hex display output in the terminal window.
	
3.  Download the program to the target board.
4.  Either press the reset button on your board or launch the debugger in your IDE to begin running the demo.

Running the demo
================
The example showcases peripheral to peripheral DMA operation. The DMA operation is performed from the result of conversion of 
ADC channel0(DAT0 register) to USART. 
Press any key from keyboard and trigger the conversion. 
The ADC channel 0 connected to Internal Temperature Sensor is sampled for conversion. 
The terminal program used in this example is RealTerm. 
The contents of the ADC DAT0 register is printed on the terminal window( Hex display output) with Least Significant Byte First. 
For example if the result in register DAT0( reg address 0x400A0020) is 0x00022A50, the terminal window prints as 50 2A 02 00

The log below shows example output of the ADC USART DMA example in the RealTerm terminal window after 4 conversions:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

A0 2A 02 00 D0 28 02 00 E0 28 02 00 20 29 02 00             
                                                       
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
