This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

C reference manual

Hi Everyone

I am new in the arm enviroment and i want to learn about these, so i bought a cheap chinese board with a st32 arm cortex m3 inside.

I installed the keil uVision software and all was ok. the only problem is that i cant find a C reference manual to start programming in C. where can i find a c manual?? in the help i just see an assambler reference guide.

Parents Reply Children
  • Wait a minute!

    I am new in the arm enviroment and i want to learn about these, so i bought a cheap chinese board with a st32 arm cortex m3 inside.

    #include <LPC21xx.H>                       /* LPC21xx definitions */
    
    void wait (void)  {                        /* wait function */
      int  d;
    
      for (d = 0; d < 1000000; d++);           /* only to delay for LED flashes */
    }