You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#pragma once
#include <stdint.h>
#include "uicontroler/tjc/tjc_base_type.h"
typedef enum { kAE_RunModeChangeEvent, // ����ģʽ�ı�
kAppEvent_StateDisplayInfo, kAppEvent_AcidChCfgChangeEvent,
// UI_EVENT
KAE_UIEvent, kAE_LoginEvent, kAE_unLoginEvent,
kAE_AcidStatChangeEvent, // ͳ�����ݱ仯�¼�
kAE_RemoterConnectedEvent, // ң�������ӳɹ�
kAE_RemoterDisConnectedEvent, // ң�����Ͽ�����
} AppEventType_t;
/**
* * @ע�� * ���������ṹ��������������������ջ���� */
typedef struct { AppEventType_t type; union { uint32_t placeholder; char bleName[20]; char stateDisplayInfo[30]; UIEvent uiEvent; } d; } AppEvent_t;
|