• Serial and timer seem conflict
    void enable_timer(void) { TH0=0x01; TL0=0x01; TMOD = (TMOD & 0xF0) | 0x01; ET0 = 1; TR0 = 1; EA = 1; } void serial_init(void) { PCON |= 0x80; SCON = 0x52; TMOD |= 0x20; TH1 = 0xF3;...
  • RESPECIFIED OR CONFLICTING CONTROL
    Hi, I want to add a delay function to my project. For the reasons specifed in some of the posts in this forum I want to write the delay function in assembly though I am coding my project in C. Initially...
  • Conflicts with UART and I2C
    Hello, I develop a system which contains a real time clock via i2C and is controlled by the computer via the RS232 protocol. In order to develop the I2c part i take the lower functions of the application...
  • FlexNet License - Version Conflict
    Hey there, our company owns DS5 5.0 Licenses and after new OS Installation and Updates we ran into a version conflict. FlexNet Error: Application Version > License Version: 5.0201910 > 5.0201712 ...
  • Conflict Bootloader vs variables
    Hi all, we need to (re)write a bootloader that uses XRAM to execute the bootloader code to modify the FLASH code memory. How can i avoid overwritting variables from within the application firmware...