Hello World


A simple Hello World example that demonstrates printing to UART0 at 19200 baud.

Toolkit:ARM Development System

Location:/bipom/devtools/GCC/LPC2000/examples/hello

Code Example


int main (void)
{
	/* Initialize the system. UART: 19200,8,N,1 */
	Initialize();
	uart0Puts("\n\rHello world");
}