##// END OF EJS Templates
Changed entry point from main to libuc_main, added hello world example.
Changed entry point from main to libuc_main, added hello world example.

File last commit:

r71:608b7f0e27c2 dev_alexis
r78:230ad3b6f43f dev_alexis
Show More
cpu.c
22 lines | 214 B | text/x-c | CLexer
#include <optimised_math.h>
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);
}