measure_pulse_width
Measure pulse width at specified threshold on oscilloscope channels to analyze signal timing characteristics and duration parameters.
Instructions
Measure pulse width at specified threshold.
Args: channel: Channel to measure. threshold_percent: Threshold percentage for pulse measurement (0-100).
Returns: Dictionary containing pulse width in seconds.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | ||
threshold_percent | No |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"enum": [
"A",
"B",
"C",
"D"
],
"type": "string"
},
"threshold_percent": {
"default": 50,
"type": "number"
}
},
"required": [
"channel"
],
"type": "object"
}