- Added additional cnvrt files from sicspsi

- Removed unused sycamore protocol from the code base
This commit is contained in:
2015-04-20 09:29:07 +02:00
parent e577d9c313
commit 005c35402a
5 changed files with 123 additions and 150 deletions

6
cnvrt.h Normal file
View File

@ -0,0 +1,6 @@
/* convert double to IEEE 32 bit floating number and vice versa
(denormalized numbers are considered as zero) */
void double2ieee(double input, char ieee[4]);
double ieee2double(char ieee[4]);