• ARM7TDMI start.s file
    Dear All I want to make a new project in Keil based on ARM7. So in the Project-->New I select ARM->ARM7(big endian) but this setup does not create start.s for me. What can I do for start.s file? ...
  • How to add header file to project
    This is my code for time delay. .#include<regx51.h> #define led P2 void delay (int i); void main() { while (1) { led = 0x01; delay(500); led = 0x01; delay(500) ; } } void delay (int i...
  • Add USB_Stick_Update as a binary file to my project
    Hi, I would like to add the USB_Stick_Update.bin to my project. USB_Stick_Update.bin is a bootloader that looks for a USB stick and when it finds the file FIRMWARE.bin, it loads this file starting...
  • How to add header file to Keil uVision4 project?
    I get the following error when I try to build my project using Keil uVision4. Configuration\RTX_Config.c(15): error: #5: cannot open source input file "tasks.h": No such file or directory In...
  • How to add library into the project?
    Hello all, I've a workspace which contain a library project and blinky project. *when a library project compiled successfully, it's created a lib??.a not lib??.lib Well, then I would like to...