@@ -9,7 +9,8 @@ sequenceDiagram
9
9
participant RPi as Raspberry Pi
10
10
participant N as Nucleo
11
11
RPi ->>+ N: Request sensors' data `0x01`
12
- N ->>- RPi: Return data
12
+ N ->> RPi: Return data
13
+ N ->>- RPi: Echo back header `0x01`
13
14
```
14
15
15
16
``` mermaid
@@ -18,31 +19,35 @@ sequenceDiagram
18
19
participant N as Nucleo
19
20
RPi ->>+ N: Notify sending power data `0x00`
20
21
RPi ->> N: Send power data
21
- N -->>- RPi: Receive data
22
+ N -->> RPi: Receive data
23
+ N ->>- RPi: Echo back header `0x00`
22
24
```
23
25
24
26
``` mermaid
25
27
sequenceDiagram
26
28
participant RPi as Raspberry Pi
27
29
participant N as Nucleo
28
30
RPi ->>+ N: Request nucleo's status `0x02`
29
- N ->>- RPi: Return data
31
+ N ->> RPi: Return data
32
+ N ->>- RPi: Echo back header `0x02`
30
33
```
31
34
32
35
``` mermaid
33
36
sequenceDiagram
34
37
participant RPi as Raspberry Pi
35
38
participant N as Nucleo
36
39
RPi ->>+ N: Request (re)starting `0xFE`
37
- N -->>- RPi: Trigger (re)start
40
+ N -->> RPi: Trigger (re)start
41
+ N ->>- RPi: Echo back header `0xFE`
38
42
```
39
43
40
44
``` mermaid
41
45
sequenceDiagram
42
46
participant RPi as Raspberry Pi
43
47
participant N as Nucleo
44
48
RPi ->>+ N: Request suspending `0xFF`
45
- N -->>- RPi: Abort immediately
49
+ N -->> RPi: Abort immediately
50
+ N ->>- RPi: Echo back header `0xFF`
46
51
```
47
52
48
53
## Data contents
0 commit comments