mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-14 04:39:28 +00:00
Added 'optimize for debug' option
This commit is contained in:
@@ -186,22 +186,12 @@ export interface BoardDetails extends Board {
|
||||
fqbn: string;
|
||||
|
||||
requiredTools: Tool[];
|
||||
locations?: BoardDetailLocations;
|
||||
}
|
||||
|
||||
export interface BoardDetailLocations {
|
||||
debugScript: string;
|
||||
}
|
||||
|
||||
export interface Tool {
|
||||
readonly packager: string;
|
||||
readonly name: string;
|
||||
readonly version: string;
|
||||
readonly locations?: ToolLocations;
|
||||
}
|
||||
export interface ToolLocations {
|
||||
main: string
|
||||
[key: string]: string
|
||||
}
|
||||
|
||||
export namespace Board {
|
||||
|
||||
@@ -14,6 +14,7 @@ export namespace CoreService {
|
||||
readonly uri: string;
|
||||
readonly board: Board;
|
||||
readonly port: string;
|
||||
readonly optimizeForDebug: boolean;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,6 +22,7 @@ export namespace CoreService {
|
||||
export interface Options {
|
||||
readonly uri: string;
|
||||
readonly board: Board;
|
||||
readonly optimizeForDebug: boolean;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user