forked from saleae/clock-statistics-measurement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
43 lines (43 loc) · 1.13 KB
/
extension.json
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
{
"version": "0.0.2",
"apiVersion": "1.0.0",
"author": "Saleae",
"description": "Builtin clock stats - Average frequency, edge count, etc",
"name": "Clock Stats",
"extensions": {
"clockStats": {
"type": "DigitalMeasurement",
"entryPoint": "clock_stats.ClockStatsMeasurer",
"metrics": {
"edgesFalling": {
"name": "No. Falling Edges",
"notation": "N<sub>falling</sub>"
},
"edgesRising": {
"name": "No. Rising Edges",
"notation": "N<sub>rising</sub>"
},
"frequencyMin": {
"name": "Minimum Frequency",
"notation": "<i>f</i><sub>min</sub>",
"units": "Hz"
},
"frequencyMax": {
"name": "Maximum Frequency",
"notation": "<i>f</i><sub>max</sub>",
"units": "Hz"
},
"frequencyAvg": {
"name": "Average Frequency",
"notation": "<i>f</i><sub>mean</sub>",
"units": "Hz"
},
"periodStdDev": {
"name": "Period STD",
"notation": "T<sub>std</sub>",
"units": "s"
}
}
}
}
}