Configuration options for the DSP debugger.
interface DspDebuggerOptions {
breakOnError: boolean;
showInfo: boolean;
showErrors: boolean;
showWarnings: boolean;
}
Defines how the DSP debugging system behaves during runtime.
breakOnError: boolean - Whether execution should pause when an error occurs.showInfo: boolean - Enable informational debug messages.showErrors: boolean - Enable error logging.showWarnings: boolean - Enable warning logging.