I am looking for a free C++ fixed point library (Mainly for use with embedded devices, not for arbitrary precision math). Basically, the requirements are:
Any suggestions?
There is an open-source fixed point math library project which can be found by following the links below:
It is a C static library with a C++ class interface for C++ users, it implements the following functionality: Trig. Functions: sin, cos, tan, asin, acos, atan, atan2 Saturated Arithmetic: sadd, ssub, smul, sdiv Other Functions: sqrt, exp
It only supports 16.16 fixed-point datatype.
It is an actively developed open-source project (looking for interested developers).