Skip to content

Commit

Permalink
Changes to support debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
haneefdm committed Nov 22, 2023
1 parent 464dd2d commit d5c28e4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@ export interface ConfigurationArguments extends DebugProtocol.LaunchRequestArgum
pvtAvoidPorts: number[];
pvtVersion: string; // Version from package.json
pvtOpenOCDDebug: boolean;
pvtDebugOptions: DebugOptions | undefined;

numberOfProcessors: number;
targetProcessor: number;
Expand Down Expand Up @@ -925,3 +926,8 @@ export function getPathRelative(base: string, target: string) {
const ret = targetElts.join('/');
return ret;
}

class DebugOptions {
public file: string = '';
public disassembly: boolean = false;
}

0 comments on commit d5c28e4

Please sign in to comment.