I think the low level routine is what he’s looking for.
I don’t use the LPC2xxx myself, but you’ll find that nothing is simple with ARM7. All I can say is search for libraries, for lpc2xxx rather than straight simple coding examples. You’ll find stuff like this:
idandush:
i have a working card , Olimex - LPC2378 , and i am trying to print to my hyper terminal a simple hello world .
This is how to do it in Oberon-07 with Armaide:
MODULE Hello;
IMPORT Out;
BEGIN
Out.String("Hello, World!"); Out.Ln
END Hello.
Nothing more, nothing less. The identical code works on all the LPC2xxx devices we support - you just need to specify the device name (e.g. LPC2378) and crystal frequency at link time.
i have a wierd problem , maybe you guys will understand it .
printing each char to the screen works , but when i use the sio.c and sio.c i found over the web , i cant print a full line , and it looks like some simple problem i dont understand.