FPU.RADIANS(); // Convert degrees to radians A = A * (PI / 180)
example 1:
#include<LCD4_128.h>
#include<FPU_128.h>
void main()
{
float x;
Init_Fpu(); // Initialize FPU
Lcd_init(); // Initialize LCD
x = 20.0;
FPU.FWRITEA(1,x);
FPU.RADIANS();
x = FPU.FREAD(1);
LCD.PRINT(x); // will print 0.34906582
}