feat: 保存已验证的CH390网络打通基线

This commit is contained in:
2026-04-17 07:09:55 +08:00
parent 59eecf428f
commit 6aba77df9a
44 changed files with 6428 additions and 3372 deletions
+25
View File
@@ -0,0 +1,25 @@
#ifndef DEBUG_LOG_H
#define DEBUG_LOG_H
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
extern volatile uint32_t g_rtt_log_seq;
extern volatile uint32_t g_rtt_log_drop_count;
extern volatile uint32_t g_rtt_log_last_drop_seq;
void debug_log_init(void);
void debug_log_write(const char *msg);
void debug_log_printf(const char *fmt, ...);
void debug_log_boot(const char *tag);
void debug_log_fault(const char *tag);
void debug_log_runtime_snapshot(void);
#ifdef __cplusplus
}
#endif
#endif