전원 + BLE + 배터리

This commit is contained in:
jhChun
2026-04-10 17:57:09 +09:00
parent 750f2d139e
commit 8dcf4adf31
22 changed files with 1791 additions and 175 deletions
+14
View File
@@ -0,0 +1,14 @@
/*******************************************************************************
* @file parser.h
* @brief BLE command parser (Zephyr port)
*
* 4바이트 TAG + DATA + CRC16 패킷 파싱 및 디스패치
******************************************************************************/
#ifndef CMD_PARSER_H__
#define CMD_PARSER_H__
#include <stdint.h>
int dr_parser(const uint8_t *buf, uint16_t len);
#endif /* CMD_PARSER_H__ */