12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef __HAL_MATH_H
- #define __HAL_MATH_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef __HAL_MATH_H_GLOBAL
- #define __HAL_MATH_H_EXTERN
- #else
- #define __HAL_MATH_H_EXTERN extern
- #endif
- /************************************************************************************************
- * Version *
- ************************************************************************************************/
- /************************************************************************************************
- * How to use *
- ************************************************************************************************/
- /************************************************************************************************
- * Enable config *
- ************************************************************************************************/
- /************************************************************************************************
- * Includes *
- ************************************************************************************************/
- /************************************************************************************************
- * Defines *
- ************************************************************************************************/
- double hal_pow(double x, double N);
- /************************************************************************************************
- * Defines *
- ************************************************************************************************/
- #ifdef __cplusplus
- };
- #endif
- #endif // __HAL_MATH_H
|