Log_Module.h 313 B

12345678910111213
  1. #ifndef __LOG_MODULE_H
  2. #define __LOG_MODULE_H
  3. #include <stdint.h>
  4. // ÈÕÖ¾
  5. void Log_SendArray(uint8_t * arr, uint16_t len);
  6. void Log_SendHex(uint8_t * arr, uint16_t len);
  7. void Log_Printf(char *format, ...);
  8. void Log_SendArray_Debug(uint8_t * arr, uint16_t len);
  9. void Log_Printf_Debug(char *format, ...);
  10. #endif