stop_signal_generator
Terminate signal generation output from PicoScope oscilloscopes to halt test signals and return generator status.
Instructions
Stop the signal generator output.
Returns: Dictionary containing status of signal generator.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The core implementation of the stop_signal_generator tool. This handler function is decorated with @mcp.tool(), defining its schema via type hints and executing the logic to stop the signal generator (currently a placeholder).@mcp.tool() def stop_signal_generator() -> dict[str, Any]: """Stop the signal generator output. Returns: Dictionary containing status of signal generator. """ # TODO: Implement signal generator stop return {"status": "not_implemented"}
- src/picoscope_mcp/server.py:19-19 (registration)The registration point where advanced tools, including stop_signal_generator, are registered to the MCP server instance.register_advanced_tools(mcp)