Host Communication Protocol  2.0
doc/md/5_image.md
Go to the documentation of this file.
1 Image handling {#image}
2 ========
3 
4 \section create_i Create
5 
6 @startuml
7 Host --> BioMcu: CMD_IMAGE \nARG_CREATE
8 hnote over BioMcu : image
9 BioMcu --> Host: CMD_IMAGE \nARG_RESULT[bep_result]
10 @enduml
11 ***
12 
13 \section upload_i Upload
14 
15 @startuml
16 participant Host
17 participant BioMcu
18 
19 hnote over BioMcu : image
20 Host --> BioMcu: CMD_IMAGE \nARG_UPLOAD
21 BioMcu --> Host: CMD_IMAGE \nARG_RESULT[bep_result] \nARG_DATA[image]
22 hnote over Host : image
23 @enduml
24 ***
25 
26 \section download_i Download
27 
28 @startuml
29 participant Host
30 participant BioMcu
31 
32 hnote over Host : image
33 Host --> BioMcu: CMD_IMAGE \nARG_DOWNLOAD \nARG_DATA[image]
34 hnote over BioMcu : image
35 BioMcu --> Host: CMD_IMAGE \nARG_RESULT[bep_result]
36 @enduml
37 ***