• Cannot Install - Where is the serial number?
    I am just starting section 3 of Embedded C and am trying to install the software. But its asking me for a serial code and says its on the Add-On Diskett? Please Help Me!!!! Thank You :0)
  • reading data from serial port in linux
    Dear All, I am trying to write and read to and from serial port for SBC (ARM9) board in linux able to write data successfully but while reading data from device need carriage return.... if any...
  • cannot read/store my SBUF value received
    Sir, I am having trouble in saving the data received from the rxd of 89c52. when i debug the program and i checked the values and changed the SBUF value and on further checking the values of the temp...
  • cannot read SFR memory space (in asm)
    Hello i have this code to read int.ram and copy to ext.ram MOV R0,#00H MOV R1,#0FFH MOV DPTR,#7C00H reload: NOP MOV A,@R0 MOVX @DPTR,A INC R0 INC DPTR DJNZ R1,reload but the memory...
  • Re: EEPROM Data read
    void I2C_Start(void) { SDA=HIGH; Delay(15); SCLK =HIGH; Delay(15); SDA = LOW; Delay(15); SCLK = LOW; Delay(15); } void I2C_Stop(void) { SCLK=LOW; Delay(15); SDA=LOW; Delay(15); SCLK...