123456789101112131415161718192021222324 |
- package rpcs
- import (
- "sparrow/pkg/protocol"
- "sparrow/pkg/tlv"
- )
- type ArgsOnStatus struct {
- DeviceId string
- Timestamp uint64
- Subdata []protocol.SubData
- VendorId string
- }
- type ReplyOnStatus ReplyEmptyResult
- type ArgsOnEvent struct {
- DeviceId string
- TimeStamp uint64
- SubDevice uint16
- No uint16
- Priority uint16
- Params []tlv.TLV
- }
- type ReplyOnEvent ReplyEmptyResult
|