| 12345678910111213 |
- #ifndef __LOG_MODULE_H
- #define __LOG_MODULE_H
- #include <stdint.h>
- // ÈÕÖ¾
- void Log_SendArray(uint8_t * arr, uint16_t len);
- void Log_SendHex(uint8_t * arr, uint16_t len);
- void Log_Printf(char *format, ...);
- void Log_SendArray_Debug(uint8_t * arr, uint16_t len);
- void Log_Printf_Debug(char *format, ...);
- #endif
|