diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2025-02-01 13:31:20 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2025-02-01 13:31:20 -0500 |
commit | d09f4289b5788d6a8b34e424841292e2b8529e56 (patch) | |
tree | d8435a07321cad3904f89cfe5ba73db26240eef0 /Drivers | |
parent | 15f35e0bb2d0012f48c9c00762077e874c87bd51 (diff) |
Diffstat (limited to 'Drivers')
-rw-r--r-- | Drivers/qfplib-m0-full-20240105/qfplib-m0-full.h | 32 | ||||
-rw-r--r-- | Drivers/qfplib-m0-full-20240105/qfplib-m0-full.s | 2 | ||||
-rw-r--r-- | Drivers/qfplib-m0-full-20240105/qfplib-port.h | 2 |
3 files changed, 20 insertions, 16 deletions
diff --git a/Drivers/qfplib-m0-full-20240105/qfplib-m0-full.h b/Drivers/qfplib-m0-full-20240105/qfplib-m0-full.h index 0b1f6eb..b3c3a50 100644 --- a/Drivers/qfplib-m0-full-20240105/qfplib-m0-full.h +++ b/Drivers/qfplib-m0-full-20240105/qfplib-m0-full.h @@ -24,21 +24,21 @@ Fifth Floor, Boston, MA 02110-1301, USA. typedef unsigned int ui32; typedef int i32; -extern float qfp_fadd (float x,float y); -extern float qfp_fsub (float x,float y); -extern float qfp_fmul (float x,float y); -extern float qfp_fdiv (float x,float y); -extern int qfp_fcmp (float x,float y); -extern float qfp_fsqrt (float x); -extern i32 qfp_float2int (float x); -extern i32 qfp_float2fix (float x,int f); -extern ui32 qfp_float2uint (float x); -extern ui32 qfp_float2ufix (float x,int f); -extern float qfp_int2float (i32 x); -extern float qfp_fix2float (i32 x,int f); -extern float qfp_uint2float (ui32 x); -extern float qfp_ufix2float (ui32 x,int f); -extern float qfp_fexp (float x); -extern float qfp_fln (float x); +__RAM_FUNC extern float qfp_fadd (float x,float y); +__RAM_FUNC extern float qfp_fsub (float x,float y); +__RAM_FUNC extern float qfp_fmul (float x,float y); +__RAM_FUNC extern float qfp_fdiv (float x,float y); +__RAM_FUNC extern int qfp_fcmp (float x,float y); +__RAM_FUNC extern float qfp_fsqrt (float x); +__RAM_FUNC extern i32 qfp_float2int (float x); +__RAM_FUNC extern i32 qfp_float2fix (float x,int f); +__RAM_FUNC extern ui32 qfp_float2uint (float x); +__RAM_FUNC extern ui32 qfp_float2ufix (float x,int f); +__RAM_FUNC extern float qfp_int2float (i32 x); +__RAM_FUNC extern float qfp_fix2float (i32 x,int f); +__RAM_FUNC extern float qfp_uint2float (ui32 x); +__RAM_FUNC extern float qfp_ufix2float (ui32 x,int f); +__RAM_FUNC extern float qfp_fexp (float x); +__RAM_FUNC extern float qfp_fln (float x); #endif diff --git a/Drivers/qfplib-m0-full-20240105/qfplib-m0-full.s b/Drivers/qfplib-m0-full-20240105/qfplib-m0-full.s index 2ded28d..b08b5c3 100644 --- a/Drivers/qfplib-m0-full-20240105/qfplib-m0-full.s +++ b/Drivers/qfplib-m0-full-20240105/qfplib-m0-full.s @@ -16,6 +16,8 @@ @ write to the Free Software Foundation, Inc., 51 Franklin Street, @ Fifth Floor, Boston, MA 02110-1301, USA. +.section .RamFunc + .syntax unified .cpu cortex-m0plus .thumb diff --git a/Drivers/qfplib-m0-full-20240105/qfplib-port.h b/Drivers/qfplib-m0-full-20240105/qfplib-port.h index 4d57810..c411dee 100644 --- a/Drivers/qfplib-m0-full-20240105/qfplib-port.h +++ b/Drivers/qfplib-m0-full-20240105/qfplib-port.h @@ -1,10 +1,12 @@ #include "qfplib-m0-full.h" +__RAM_FUNC float qfp_fpow(float b, float e) { return qfp_fexp(qfp_fmul(e, qfp_fln(b))); } +__RAM_FUNC float qfp_flog10(float x) { extern float ln10; |