-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcmd.yaml
51 lines (46 loc) · 999 Bytes
/
cmd.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
- !Command
name: NO_OP
opcode: 0x0001
subsystem: CORE
title: NO_OP
desc: |
Standard NO_OP command.
- !Command
name: SEQ_START
opcode: 0x002
subsystem: CMD
title: Start Sequence
desc: |
This command starts a specified command sequence.
arguments:
- !Argument
name: sequence_id
desc: Sequence ID
units: none
type: MSB_U16
bytes: [0,1]
- !Command
name: SEQ_ENABLE_DISABLE
opcode: 0x0003
subsystem: CMD
title: Enable/Disable Sequence
desc: |
This command enables or disabled the specified sequence. If a
sequence to be disabled is currently executing, it will be
interrupted.
arguments:
- !Argument
name: sequence_id
desc: Sequence ID
units: none
type: MSB_U16
bytes: [0,1]
- !Argument
name: enable
desc: Enable
units: none
type: U8
bytes: 2
enum:
0: DISABLED
1: ENABLED