Commit 3fe56541 authored by chiaming2000's avatar chiaming2000 Committed by GitHub
Browse files

Update README.md

parent c050f15f
Loading
Loading
Loading
Loading
+21 −3
Original line number Diff line number Diff line
@@ -404,27 +404,46 @@ The `NOOP` operation can be used as a quick test of whether the Kinetic Device i
**Request Message**

```
message {
  // See above for descriptions of these fields
  authType: HMACAUTH
  hmacAuth {
    identity: ...
    hmac: "..."
  }
  commandBytes: "..."
}

// human readable commandBytes (decoded from commandBytes) 
command {
  header {
    // See above for descriptions of these fields
    clusterVersion: ...
    identity: ...
    connectionID: ...
    sequence: ...
    // messageType should be NOOP
    messageType: NOOP
  }
}
hmac: "..."
```

**Response Message**

```
message { 
  authType: HMACAUTH
  hmacAuth {
    identity: ...
    hmac: "..."
  }
  commandBytes: "..."
}

// human readable commandBytes (decoded from commandBytes) 
command {
  header {
    // See above
    connectionID: ...
    ackSequence: ...
    
    // messageType should be NOOP_RESPONSE
@@ -434,7 +453,6 @@ command {
    code: SUCCESS
  }
}
hmac: ""
```