iR58/bk_aidk/projects/lock_lfvx/.svn/pristine/28/2821997c723e79e8bd1929b8a51c819c7d7fb532.svn-base
2025-05-08 18:01:52 +08:00

30 lines
470 B
Plaintext
Executable File

#ifndef __SYSTEM_CLIENT_H__
#define __SYSTEM_CLIENT_H__
#ifdef __cplusplus
extern "C" {
#endif
typedef enum
{
NULL_MSG = 0,
MSG_ENTER_POWER_SAVE,
MSG_EXIT_POWER_SAVE,
MSG_AGORA,
MSG_CLOSE_BLE,
} SystemMessageType;
typedef struct
{
SystemMessageType type;
int len;
uint8_t *msg;
} SystemMessage;
void system_client_start();
void system_client_do(SystemMessageType msg);
#ifdef __cplusplus
}
#endif
#endif