Advertisement
leon_e

Untitled

Jul 2nd, 2018
504
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. typedef struct _BptRx{
  2.     // 0xa5
  3.     uint8_t head;
  4.     // 结果对应的测试编号
  5.     uint8_t index;
  6.     // 结果对应的指令id
  7.     uint8_t cmd;
  8.     // chanel id
  9.     uint8_t ch;
  10.     BptRxData data;
  11.     // 正在测试的测试编号,空闲时为0xFF
  12.     uint8_t cur_index;
  13.     // 正在测量的指令id,空闲时为0xFF
  14.     uint8_t cur_cmd;
  15.     uint8_t cks;
  16. }BptRx;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement