• linking a hex file (howto...)
    Hi, I have an application where a STR912 is connected to a PIC device. The two devices communicate using CAN. I want to download the PIC's firmware using the STR912. For this purpose, I have...
  • One application in separate HEX files
    Hello! I have application which consist of main function and some ancillary functions with mathematics, FLASH service and SPI communications(they are in different *.c files). My task is to separate my...
  • 2 separate HEX files
    I'm using the Keil C51 compiler for my project. I need to create 2 separate code areas: one for on-chip code and one for off-chip (EEPROM) code. I want to locate some functions on-chip (for speed) and...
  • How to separate C51 library
    Our project consists of firmware and application, which are stored in different memory--rom & otp. So the firmware part shall not be changed while application can be developed further on. Now for firmware...
  • Two different functions but with the same name in separate libraries
    I have two libraries, named a.lib and b.lib. Both libraries have a function char test(void), but return different characters. a.c (a.lib) char test(void); char test(void) { return 'a'; } b.c (b...