• Syntax errors only when adding UART connection
    Hi all, I'm brand new at this. I'm in microVision coding for an ADuC7026 eval board from Analog. I have some preexisting code that works fine. However, I need to add a UART interface to this. Pulling...
  • UART problem
    #include<LPC21xx.h> int main (void) { IODIR0=0x01; PINSEL0=0x05; U0LCR=0x83; U0DLL= 97; IOSET0=0x01; U0IER=0x01; while(1){ unsigned char a; while(!(U0LSR&0x01)); a=U0RBR; while(!(U0LSR&0x20));...
  • UART PROBLEM!!!
    I have a question about UART! I am working with S3C2410X, and I have two UVISION IDE,one is eval,another is BETA4.my project is a UART,in eval mode,my uart project is good,which can output correctly...
  • UART Problems
    I'm having bizzare UART problems using STR730 ARM cpu. I'm trying to code an interrupt driven handler, but although the code will break correctly when a byte is received ( JTAG to target hardware )...
  • UART Problem
    I have written a code which intializes 2 UARTs, i.e., UART-1 and UART-2. The code works pretty fine. I am using the same code on two different controllers. Simply say i have a board with two controllers...