diff options
Diffstat (limited to '2016/33c3/images')
-rw-r--r-- | 2016/33c3/images/28c3_option_stick.png | bin | 0 -> 383889 bytes | |||
-rw-r--r-- | 2016/33c3/images/diag_frame.blockdiag | 16 | ||||
-rw-r--r-- | 2016/33c3/images/upgrade_process.blockdiag | 8 |
3 files changed, 22 insertions, 2 deletions
diff --git a/2016/33c3/images/28c3_option_stick.png b/2016/33c3/images/28c3_option_stick.png Binary files differnew file mode 100644 index 0000000..00f0ce6 --- /dev/null +++ b/2016/33c3/images/28c3_option_stick.png diff --git a/2016/33c3/images/diag_frame.blockdiag b/2016/33c3/images/diag_frame.blockdiag new file mode 100644 index 0000000..171d650 --- /dev/null +++ b/2016/33c3/images/diag_frame.blockdiag @@ -0,0 +1,16 @@ +blockdiag { + node_height = 100; + span_width = 2; + default_fontsize = 16; + + START [label="0x7E"]; + CMD [label="CMD"]; + DAT [label="Payload", width=300]; + CRC [label="CRC16"]; + END [label="0x7E"]; + + START -> CMD [style = none]; + CMD -> DAT [style = none]; + DAT -> CRC [style = none]; + CRC -> END [style = none]; +} diff --git a/2016/33c3/images/upgrade_process.blockdiag b/2016/33c3/images/upgrade_process.blockdiag index fdd769d..4e94ef3 100644 --- a/2016/33c3/images/upgrade_process.blockdiag +++ b/2016/33c3/images/upgrade_process.blockdiag @@ -1,12 +1,16 @@ blockdiag { node_width = 200; + default_group_color = none; AT [label="atfwd_daemon"]; QC [label="QCMAP_ConnectionManager"]; WG [label="wget"]; RI [label="recovery image"]; - AT -> QC; - AT -> WG -> RI; + AT -> QC [label="start"]; + AT -> WG [label="start"]; + AT -> RI [label="reboot"]; + + group { WG; RI }; } |