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.

38 lines
745 B

9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
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_PageChangeEvent,
  13. kAE_AcidStatChangeEvent, // ͳ�����ݱ仯�¼�
  14. kAE_RemoterConnectedEvent, // ң�������ӳɹ�
  15. kAE_RemoterDisConnectedEvent, // ң�����Ͽ�����
  16. } AppEventType_t;
  17. /**
  18. *
  19. * @ע
  20. * ׶󣬷ջ
  21. */
  22. typedef struct {
  23. AppEventType_t type;
  24. union {
  25. uint32_t placeholder;
  26. char bleName[20];
  27. char stateDisplayInfo[30];
  28. UIEvent uiEvent;
  29. int32_t pageChangeTo;
  30. } d;
  31. } AppEvent_t;