• 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...
  • 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 )...
  • 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...