hm_dump.h 259 B

123456789101112131415161718
  1. #ifndef HM_DUMP_H
  2. #define HM_DUMP_H
  3. #include <stdint.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. extern void hm_dump_out(uint8_t type, uint8_t *data);
  8. extern void hm_dump_in(uint8_t type, uint8_t *data);
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif /* HM_DUMP_H */