view_waveform
Visualize and analyze VCD waveform files using GTKWave viewer. Input a project ID and VCD filename to inspect simulation results and debug electronic designs efficiently.
Instructions
Open VCD waveform file in GTKWave viewer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | Project ID from simulation (required) | |
vcd_file | No | VCD filename (default: output.vcd) | output.vcd |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "Project ID from simulation (required)",
"type": "string"
},
"vcd_file": {
"default": "output.vcd",
"description": "VCD filename (default: output.vcd)",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}