전원 + 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
+18
View File
@@ -0,0 +1,18 @@
/*******************************************************************************
* @file power_control.h
* @brief Device power sequence control (Zephyr port)
******************************************************************************/
#ifndef POWER_CONTROL_H__
#define POWER_CONTROL_H__
#include "main.h"
int device_sleep_mode(void);
int device_activated(void);
int device_reactivated(void);
void power_loop(struct k_timer *timer);
void power_timer_start(void);
void power_timer_stop(void);
void power_timer_init(void);
#endif /* POWER_CONTROL_H__ */