You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the keyword volatile doesn't seem to work which makes things like benchmarking quite difficult.
minimal example: #include <FixedPoints.h> #include <FixedPointsCommon.h>
volatile is strongly neccesary if a given variable can be modified from the main program and from the interrupt(s) - quite a common phenomenon in programming for Arduino
the keyword volatile doesn't seem to work which makes things like benchmarking quite difficult.
minimal example:
#include <FixedPoints.h>
#include <FixedPointsCommon.h>
void setup() {
volatile SFixed<7, 8> f1, f2, f3;
f3=f1+f2;
}
void loop() {
}
this produces the error:
Or am I just doing it wrong?
The text was updated successfully, but these errors were encountered: