• Conflicting compiler for startup_stm32f070xb.s file
    Hi, I am new at KEIL. Planning to work in this environment IDE-Version: µVision V5.21.1.0 Copyright (C) 2016 ARM Ltd and ARM Germany GmbH. All rights reserved. Tool Version Numbers: Toolchain...
  • Flash Utility
    Where can I find the doc to flash utility? I am looking for list of arguments that the utility takes. TIA Sam
  • Manual
    Please send me the Software development manual for the N79E352 controller.
  • 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...
  • 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;...