• When declare a variable to be static?
    Can someone give some explains on when to declare a variable to be static? What is the difference with extern one?
  • static inline function error
    Gentlemen, I'm getting an error when I declare a function static inline. Could anyone give me a hand and try telling me why. the following function gives an error: static inline int test(void...
  • Static function register optimization
    Can someone tell me why all functions declared as "static" do not seem to have any register optimization done on them? At least this is implied since they are not listed in the map file where register...
  • how to override static function
    Note: This was originally posted on 5th June 2009 at http://forums.arm.com I find we can override a function Using $Super$$ and $Sub$$ to overide symbol definitions from the pdf ADS_LinkerGuide_A.pdf...
  • Problem with static variable in the functions.
    Hi all. The source C file is... ============================= void a(void) { static unsigned char var1; ... switch(var1){ ... } } ============================== and the error message...