⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mathhardlib.c

📁 VxWorks BSP框架源代码包含头文件和驱动
💻 C
字号:
/* mathHardLib.c - hardware floating-point math library *//* Copyright 1998-2001 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history--------------------01e,07sep01,zl   re-organized SH math library support (SPR #69834).01d,20sep00,hk   moved external function pointer declarations to mathShLibP.h.01c,27aug99,zl   added mathHardInit for SH775001b,15jun98,hk   reformatted to wrs style based on mc68k-01o.01a,18mar98,asai written.*//*DESCRIPTIONThis library provides support routines for using hardware floating-pointunits.The routines in this library are used automatically for high-levelmath functions only if mathHardInit() has been called previously.INCLUDE FILES: math.hSEE ALSO: mathSoftLib, .I VxWorks Programmer's Guidearchitecture-specific appendices*/#include "vxWorks.h"#include "fppLib.h"/******************************************************************************** mathHardInit - initialize hardware floating-point math support** This routine is called from usrConfig.c if INCLUDE_HW_FP is defined. ** RETURNS: N/A** SEE ALSO: mathSoftInit()*/void mathHardInit ()    {    /* initialize hardware FP support */    fppInit();    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -