Search found 3 matches
- Tue Apr 05, 2011 10:38 pm
- Forum: LPC2000
- Topic: Buffered UART Routines
- Replies: 5
- Views: 13216
Re: Buffered UART Routines
Thanks for the offer. Do you have a link to the files? I'm not sure if they can be uploaded to this site... I use UART0 to communicate with the user terminal, and UART1 talks to a RF telemetry transponder. Both need to be buffered and interrupt driven. My controller is LPC2103 based. This is not a c...
- Sat Mar 26, 2011 8:25 pm
- Forum: Oberon Language
- Topic: Shifts and masks
- Replies: 3
- Views: 83179
Re: Shifts and masks
I'm sure its obvious to everyone else - but just in case:
I think
Should be
I think
Code: Select all
R := LSR(LSL(value, 16));
Code: Select all
R := LSR(LSL(value, 16), 22);
- Thu Mar 24, 2011 10:06 pm
- Forum: LPC2000
- Topic: Buffered UART Routines
- Replies: 5
- Views: 13216
Buffered UART Routines
I need to access UART0 and UART1 with buffered IO on both Input and Output. To save reinventing the wheel I figured I'd ask here first if anyone has such a set of routines in Oberon07, or a link to a source? Google came up empty. Failing that would anyone like to collaborate in mapping the standard ...