• Creating Library
    Hi all, How to create a library in keil IDE??? Does anyone know?? Please tell me.
  • How to create a steady delay?
    Hi, My application runs on a STM32F103ZE uC. The application needs to light up some indicator Leds for a fixed amount of time just to indicate a correct startup. This amount of time should be system...
  • Code portability
    Hello, I was browsing through older posts that deal with the painful issue of portability ( http://www.keil.com/forum/docs/thread8109.asp ). I was (and still am) a big advocate of programming as much...
  • Is this portable code?
    Does this code port well to a 16 bit machine (written on 32 bit machine)? int code = 0x10 ; int marker = 0x20 ; unsigned long frame; int main(void) { frame = (unsigned short)~marker<<11 | (unsigned...
  • Creating a library
    Hi I am still raw with programming and I would like to know how to create a library which would allow me to access functions I define myself. I have multiple source files (*.c) which define functions...