utils.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef __UTILS_H
  2. #define __UTILS_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #ifdef __UTILS_H_GLOBAL
  7. #define __UTILS_H_EXTERN
  8. #else
  9. #define __UTILS_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. #include "stdint.h"
  24. /************************************************************************************************
  25. * Defines *
  26. ************************************************************************************************/
  27. #define ARR_SIZE(a) sizeof(a) / sizeof((a)[0])
  28. /************************************************************************************************
  29. * Defines *
  30. ************************************************************************************************/
  31. void data_bit_move(uint8_t start_bit, uint8_t bit_len, uint64_t data);
  32. void product_array(uint8_t send_array[8]);
  33. #ifdef __cplusplus
  34. };
  35. #endif
  36. #endif // __UTILS_H