hal_math.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #ifndef __HAL_MATH_H
  2. #define __HAL_MATH_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #ifdef __HAL_MATH_H_GLOBAL
  7. #define __HAL_MATH_H_EXTERN
  8. #else
  9. #define __HAL_MATH_H_EXTERN extern
  10. #endif
  11. /************************************************************************************************
  12. * Version *
  13. ************************************************************************************************/
  14. /************************************************************************************************
  15. * How to use *
  16. ************************************************************************************************/
  17. /************************************************************************************************
  18. * Enable config *
  19. ************************************************************************************************/
  20. /************************************************************************************************
  21. * Includes *
  22. ************************************************************************************************/
  23. /************************************************************************************************
  24. * Defines *
  25. ************************************************************************************************/
  26. double hal_pow(double x, double N);
  27. /************************************************************************************************
  28. * Defines *
  29. ************************************************************************************************/
  30. #ifdef __cplusplus
  31. };
  32. #endif
  33. #endif // __HAL_MATH_H