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.

35 lines
694 B

9 months ago
  1. #pragma once
  2. #include <stdint.h>
  3. #include "uicontroler/tjc/tjc_base_type.h"
  4. typedef enum {
  5. kAE_RunModeChangeEvent, // ����ģʽ�ı�
  6. kAppEvent_StateDisplayInfo,
  7. kAppEvent_AcidChCfgChangeEvent,
  8. // UI_EVENT
  9. KAE_UIEvent,
  10. kAE_LoginEvent,
  11. kAE_unLoginEvent,
  12. kAE_AcidStatChangeEvent, // ͳ�����ݱ仯�¼�
  13. kAE_RemoterConnectedEvent, // ң�������ӳɹ�
  14. kAE_RemoterDisConnectedEvent, // ң�����Ͽ�����
  15. } AppEventType_t;
  16. /**
  17. *
  18. * @ע
  19. * ׶󣬷ջ
  20. */
  21. typedef struct {
  22. AppEventType_t type;
  23. union {
  24. uint32_t placeholder;
  25. char bleName[20];
  26. char stateDisplayInfo[30];
  27. UIEvent uiEvent;
  28. } d;
  29. } AppEvent_t;