• volatile ?
    What is the use of declaring a variable volatile... what it means if it is specified volatile?
  • Volatile variables
    What is the meaning of Volatile used in a variable declaration? Thank's Sergio
  • Volatile for SFR ?
    I have some Special function registers (SFR) that need to be in volatile type. How can I do this? Because when I declare: volatile sfr16 CAN0DAT = 0xD0; the compiler said that is wrong.
  • Volatile declaration
    Should I be using the "volatile" declaration with the Keil C compiler? It hasn't made a difference so far - as far as I can tell (which may or may not mean anyting). The manuals make no reference to it...
  • volatile keyword
    The application note suggests to wrap a timer tick variable in a function which disables all interrupts, reads and copies the variable into a temp, re-enables interrupts, then returns the temp. Can...