char is unsigned by default on ARM, unlike x86, which causes a few problems such as tilt values being wildly incorrect.
technically, the "correct" way to fix this is to be explicit and replace all char with signed char, but this compiler flag works too.
char
is unsigned by default on ARM, unlike x86, which causes a few problems such as tilt values being wildly incorrect. technically, the "correct" way to fix this is to be explicit and replace allchar
withsigned char
, but this compiler flag works too.