]> begriffs open source - cmsis/blob - CMSIS/DoxyGen/Core/src/Ref_FPU.txt
Doxygen: Updated Arm Compiler LTM Version to Arm Compiler 6.6.2.
[cmsis] / CMSIS / DoxyGen / Core / src / Ref_FPU.txt
1 /**
2 \defgroup fpu_functions  FPU Functions
3 \brief Functions that relate to the Floating-Point Arithmetic Unit.
4 \details
5 Some Cortex-M processors include optional floating-point arithmetic functionality, with support
6 for single and double-precision arithmetic.
7 The Cortex-M processor with FPU is an implementation of the single-precision and
8 double-precision variant of the ARMv7-M Architecture with Floating-Point Extension (FPv5).
9
10 @{
11 */
12
13 /**
14   \brief       Get the FPU type.
15   \returns
16    - \b  0: No FPU
17    - \b  1: Single precision FPU
18    - \b  2: Double + Single precision FPU
19    
20    The function returns the implemented FPU type. 
21 */
22 __STATIC_INLINE uint32_t SCB_GetFPUType(void);
23
24 /**
25  @}  
26 */
27
28