General C question - volatile cast
Posted on November 30, 2015 at 19:31Hello,Using a lot of global variables modified into ISR sections, I use a lot the ''volatile'' keyword when needed.volatile int foo;int square(int din){ return din*din;}result = square(foo); // Does not compile:...