• 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 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...
  • 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 problem
    Hi all I am using MCB2300 development kit ,on this kit i have two UART 0 and 1 where i have uart0 as working but my uart 1,2,3 is not responding ...i dont know y ...??. i just copied the uart0 function...
  • HAL Library UART Problem
    Hello everyone; I'm using a STM32F4-DISCOVERY BOARD, when i'm trying to send datas over hal uart it only sends ASCII types of datas but in my project i must send binaries, strings, floats, chars...