프로젝트 정리: 앱 내부 구조 수정 및 레거시 플래시 스크립트 제거

- command/system/measurement
- .bat 파일 삭제(nrfprog 세대, nrfutil로 대체됨)
This commit is contained in:
2026-04-15 15:53:46 +09:00
parent 95894eacd4
commit 2c7f306390
30 changed files with 4083 additions and 4204 deletions

View File

@@ -0,0 +1,24 @@
/* parser.h */
#ifndef PARSER_H
#define PARSER_H
#include <stdint.h>
#include <stdbool.h>
/* Platform-dependent function pointer set */
typedef struct {
void (*log)(const char *fmt, ...);
void (*tx_bin)(const uint8_t *buf, uint16_t len);
bool crc_check;
} dr_platform_if_t;
/* Global interface & log flag */
extern dr_platform_if_t g_plat;
extern bool g_log_enable;
/* Main parser entry point */
int dr_cmd_parser(const uint8_t *buf, uint8_t len);
#endif /* PARSER_H */