-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathdc-pd.plot
More file actions
47 lines (35 loc) · 934 Bytes
/
dc-pd.plot
File metadata and controls
47 lines (35 loc) · 934 Bytes
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
set datafile separator comma
set term wxt size 1920,1080
set key autotitle columnhead
FILE = "dc-pd.csv"
set multiplot
set size 1.0,0.25
# For time in seconds
# set xlabel 'Elapsed (seconds)'
# set xrange [0.0:10.0]
# For cycle count
set xlabel 'Cycle'
# set xrange [700:800]
# Milliseconds
# set yrange [0:10]
set origin 0.0,0.75
set title "SubDevice system time u32"
plot for [n=4:23:4] FILE using 2:(column(n)) with lines
# Milliseconds
# set yrange [0:10]
set origin 0.0,0.50
set title "SubDevice system time u64"
plot for [n=5:23:4] FILE using 2:(column(n)) with lines
# set yrange [0:3]
set ylabel "Millis"
# set logscale y
set origin 0.0,0.25
set title "Time to next SYNC0"
plot for [n=6:23:4] FILE using 2:(column(n)) with lines
# Milliseconds
# set yrange [0:10]
unset logscale y
set ylabel "Nanoseconds"
set origin 0.0,0.0
set title "Next SYNC0 raw value"
plot for [n=7:23:4] FILE using 2:(column(n)) with lines