message.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. #ifndef __MESSAGE_H_
  2. #define __MESSAGE_H_
  3. #include <stm32f10x.h>
  4. #include "ListBox.h"
  5. #if 0
  6. #define SMS_START_ADDRESS 0x3E70000 //消息存储首地址 1M处
  7. #else
  8. #define SMS_START_ADDRESS 0x00300000 //消息存在第3M开始的0.5M大小处,1000条站0.5M
  9. #endif
  10. #define SMS_TOTAL_NUM 1000 //分配消息容量空间
  11. #define SMS_SIZE_PER 512//256 //每条消息大小(包括头信息与内容总体)
  12. #define SMS_SIGNAL_LEN (400)//90 //每条信息内容长度
  13. //SUT_SMS_CONF_HEADER
  14. struct SUT_SMS_CONF_HEADER
  15. {
  16. uint8_t resetFlag; //复位标记,如果为R,则复位消息在外部flash的内容,在HGS.SMS资源文件设置为‘R’,每次烧录都会复位
  17. uint32_t newAddr; //保存最新消息的地址,掉电上电使用,在HGS.SMS资源文件设置为0000
  18. }__attribute__((packed));
  19. //SUT_SMS_INFO_HEADER
  20. struct SUT_SMS_INFO_HEADER
  21. {//每条消息的头信息,带链表
  22. uint8_t flag; //0,没消息 1,有消息
  23. uint8_t read; //0,已读, 1,未读
  24. uint32_t recTime;//消息接收的时间戳 Y:6bit,M:4bit,D:5bit,H:5bit,M:6bit,S:6bit = 32bit
  25. uint16_t len; //消息数据长度,除头信息外
  26. uint32_t upperAddr;//指向上一条消息地址
  27. uint32_t nextAddr; //下一条消息地址
  28. }__attribute__((packed));
  29. #define SMS_INFO_REAL_LEN sizeof(struct SUT_SMS_INFO_HEADER)-8 //除链表信息外
  30. #define SMS_INFO_DETAIL_OFFSET sizeof(struct SUT_SMS_INFO_HEADER)//具体消息内容偏移地址
  31. typedef struct
  32. {//消息控制使用
  33. uint8_t haveUnRead:1; //0,没有未读消息 1,有未读消息
  34. uint8_t smsUpdate:1; //0,没有收到信息 1,收到信息可以存储
  35. uint8_t poolFull:1; //0,内存充足 1,没内存了
  36. uint8_t smsEnable; //0,消息功能失效,1消息功能正常
  37. uint16_t smsTotalNum; //已存消息数目
  38. uint16_t smsUnReadNum; //未读消息数目
  39. uint32_t newestAddr; //保存从哪开始读消息的地址,即最新消息
  40. uint32_t emptyAddr; //保存消息的地址
  41. uint32_t upToBeRead; //分页向上读时记录上一页开始读的位置
  42. uint32_t downToBeRead; //分页向下读时记录下一页开始读的位置
  43. uint32_t ReadAddr[LIST_ROW];//保存每页显示的消息对应用在外部flash的地址,读取消息所有内容时使用
  44. }__attribute__((packed)) SUT_SMS_DEFINE;
  45. //////////////////////////////////////////////
  46. #define MESS_EDIT_BUFFER_LEN_MAX 92 //显示具体消息内容长度
  47. typedef struct SUT_MESSAGE_EDIT
  48. {
  49. unsigned short x;
  50. unsigned char y;
  51. char buffer[MESS_EDIT_BUFFER_LEN_MAX+1];
  52. char buffer1[20];
  53. unsigned char item;
  54. unsigned char len;
  55. unsigned char xlen;
  56. unsigned char ylen;
  57. }SUT_MESSAGE_EDIT;
  58. extern SUT_SMS_DEFINE sutSms;
  59. void UIShowMailBox(int update);
  60. void MessageResponse(void);
  61. void MessageReadShow(int Update);
  62. void MessageReadResponse(void);
  63. void SetMessageFile(const char *filename);
  64. void MessageEditInit(SUT_MESSAGE_EDIT *p,unsigned short x,unsigned char y,char *def);
  65. unsigned short MessageEditShow(SUT_MESSAGE_EDIT *p,char *def);
  66. void MessageDeletShow(int update);
  67. void MessageDeletResponse(void);
  68. void SetGotNewMessage(void);
  69. void ShowMessageFlag(uint8_t show);
  70. //////////////////////////////
  71. void SetMessageConfi(void);
  72. void IncomingSMS(void);
  73. void DeleteSpecificSMS(void);
  74. uint8_t GetPagePreMessage(struct SUT_LIST_BOX *p,uint8_t firstRead, char up_down);
  75. void MessageOptionShow(int update);
  76. void MessageOptionResponse(void);
  77. void SMSHandle(void);
  78. void ResetNetConfi(void);
  79. #endif