• Using USB CDC for STDIO
    I want to connect STDIN & STDOUT of \Keil\ARM\RL\FlashFS\SRC\Retarget.c with the virtual COM port from \Keil\ARM\Boards\Keil\MCB2140\RL\USB\RTX_CDC. It is clear that I have to implement sendchar...
  • Errors due to including of stdio header file
    This is code for showing temperature sensed value of UART0 of lpc2138 #include <stdio.h> #include"LPC213.h" // Define LPC2148 Header File #define CR 0x0D #define DONE 0x80000000 #define START...
  • How to access MDK (network library) source code?
    The front page for Keil MDK ( https://www2.keil.com/mdk5/middleware ) mentions that "Keil MDK Source is available as a separate product". I was not able to find any mentions of that product anywhere...
  • how to create fPIC library
    I compiled a library with the option -fPIC, And add the option in Misc controls. Output error when build: test.c: error: C3900U: Unrecognized option '-fPIC'.
  • How to use functions in a library
    Hello I created a library that includes a function. #include "AT91SAM7x256.H" void ASD(void) { AT91C_BASE_PMC->PMC_PCER=1<<2; } int main() { } I added the lib file to an executable project...