Sign in

简柏林 / thingskit-scada · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit-scada
  • src
  • enums
  • commandEnum.ts
  • perf: 优化命令下发&&物模型枚举与结构体回显
    85a9d018
    ww authored
    2024-01-10 10:19:01 +0800  
    Browse Files »
commandEnum.ts 359 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
export enum CommandWayEnum {
  ONE_WAY = 'oneway',
  TWO_WAY = 'twoway',
}

export enum CommandWayNameEnum {
  ONE_WAY = '单向',
  TWO_WAY = '双向',
}

export enum CommandCallWayEnum {
  SYNC = 'SYNC',
  ASYNC = 'ASYNC',
}

export enum CommandMethodEnum {
  THINGSKIT = 'methodThingskit',
}

export enum ModbusCRCEnum {
  CRC_16_LOWER = 'CRC_16_LOWER',
}