• how to add .a library in my project
    Hi, How do I add a third party library, which has the extension .a, into my Keil project? Since Keil IDE only allows me to add .lib files, so I rename the file from thirdparty.a to thirdparty...
  • How to add Hal library to a keil project?
    Hi, I'm looking for the right steps to add the Hal library to a Keil project. i already have the stm32f1xx hal library that include the hal and the cmsis folders (src and include). i'm facing some problem...
  • How to add BL51 directive in Library?
    I have created a small timer library, in which it call the timer handler by function pointer in the interrupt.And i now found that the handler local data would be corrupted because of the data overlaying...
  • Add PDFs to Keil project
    Speaking for myself I really would appreciate if we could add pdfs manually to our Keil projects. I don't find the books tab very handy, the default datasheet and summary have to be downloaded from online...
  • 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...