##// END OF EJS Templates
Huge cleanup, removed old unmaintained boards/libs/archs....
Huge cleanup, removed old unmaintained boards/libs/archs. Changed from building once the lib in small archives to whole rebuilding from sources for each executable, this will allow to use build-time switchs/optimisations. /!\ Simulator broken.

File last commit:

r104:cfe8b1e0657d dev_alexis
r105:031afdd64272 tip dev_alexis
Show More
cpu.c
24 lines | 237 B | text/x-c | CLexer
Huge cleanup, removed "out of dir building" now libuc contains qmake and...
r71 #include <optimised_math.h>
Alexis Jeandet
Added cpuid getter...
r104 #include <arm_math.h>
Huge cleanup, removed "out of dir building" now libuc contains qmake and...
r71 float32_t optimised_sqrt(float32_t value)
{
float32_t out;
arm_sqrt_f32(value,&out);
return out;
}
float optimised_sin(float32_t x)
{
return arm_sin_f32(x);
}