• serial interrupt problem
    Hello there! i am writing a program in which i must monitor port P2.0 to be low and execute some sort of code but i also want that when some data is received in SBUF the control should be transfered...
  • problem with p89c669 serial interrupt
    iam using p89c669 for serial communication the problem is no transmission thats TI_0 is not getting set when i mov something to s0buf,iam using uart 0 void main() { i=0; PCON = 0X10; S0CON = 0X50;...
  • S3C2440 Serial Interrupt problem
    Hi all, I am developing program for UART0 with Interrupt. #include "def.h" #include "option.h" #include "2440addr.h" void uart_init(void); void uart_transmit(void); void uart_interrupt_init...
  • LPC2378 serial interrupt problem
    LPC2378 serial interrupt problem following code is working fine in interrupt for UART0 InitUART0(); U0IER =0x04; while (1) { U0IER =0x0F; if(buff1[0]=='c') { TransmitChar0('I');TransmitChar0...
  • Serial IO problem without interrupt
    Hi, I'm french so excuse me for my English. I want to communicate with a PC and a 80c552 card made by myself, this with a serial link. I have no INT and just an emission of an octet from the 80c552...