Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,17 @@
"IIDN",
"LOGLOC",
"rclick",
"TCPIP"
"TCPIP",
"treeview"
],
"Lua.workspace.ignoreDir": [],
"Lua.diagnostics.libraryFiles": "Disable",
"Lua.runtime.version": "Lua 5.1",
"Lua.runtime.builtin": {
"basic": "disable",
"basic": "enable",
"bit": "disable",
"bit32": "disable",
"builtin": "disable",
"builtin": "enable",
"coroutine": "disable",
"debug": "disable",
"ffi": "disable",
Expand All @@ -47,12 +48,14 @@
"package": "disable",
"string": "disable",
"string.buffer": "disable",
"table": "disable",
"table": "enable",
"table.clear": "disable",
"table.new": "disable",
"utf8": "disable"
},
"Lua.workspace.library": [
"c:\\Users\\esarver1\\.vscode\\extensions\\tektronix.tsp-toolkit-1.2.2-win32-x64\\node_modules\\@tektronix\\keithley_instrument_libraries\\keithley_instrument_libraries\\tsp-lua-5.0"
"c:\\Users\\rjha\\.vscode\\extensions\\tektronix.tsp-toolkit-1.4.2\\node_modules\\@tektronix\\keithley_instrument_libraries\\keithley_instrument_libraries\\tsp-lua-5.0",
"c:\\Users\\rjha\\.vscode\\extensions\\tektronix.tsp-toolkit-1.4.2\\node_modules\\@tektronix\\keithley_instrument_libraries\\keithley_instrument_libraries\\nodes_definitions"
],
"Lua.workspace.preloadFileSize": 2000,
}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
## [1.4.2]

### Added
- \[Beta] Trigger Flow section in script generation view
- Added activation dependency check for Linux and Windows
- Added configuration to control reset and clear error queue on connection
- Added supported model validation check before adding new system configuration
Expand Down
64 changes: 63 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

78 changes: 68 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,13 @@
"id": "power-line-frequency-setting",
"title": "Set your power-line frequency",
"description": "Make sure to set your local power-line frequency (`tsp.lineFrequency`) in your extension settings.\nThis ensures the calculations within the I-V Characterization Script Generation feature are correct when using NPLC for measurments.",
"completionEvents": ["onSettingChanged:tsp.lineFrequency"],
"media": {"image": "./resources/walkthrough/LineFrequencySetting.png", "altText": "Modify tsp.lineFrequency setting to with 50 or 60 Hz"}

"completionEvents": [
"onSettingChanged:tsp.lineFrequency"
],
"media": {
"image": "./resources/walkthrough/LineFrequencySetting.png",
"altText": "Modify tsp.lineFrequency setting to with 50 or 60 Hz"
}
},
{
"id": "open-tsp-folder",
Expand Down Expand Up @@ -257,22 +261,22 @@
{
"command": "tsp.saveTspOutputStart",
"title": "[Beta] Save commands and output to file",
"icon": "$(git-stash)"
"icon": "$(git-stash)"
},
{
"command": "tsp.saveTspOutputEnd",
"title": "[Beta] Stop saving commands and output to file",
"icon": "$(stop-circle)"
"icon": "$(stop-circle)"
},
{
"command": "tsp.saveBuffersToFile",
"title": "[Beta] Save buffers to a file",
"icon": "$(layout-panel-dock)"
"icon": "$(layout-panel-dock)"
},
{
"command": "tsp.saveScriptOutput",
"title": "[Beta] Save TSP Script Output",
"icon": "$(file-code)"
"icon": "$(file-code)"
},
{
"command": "tspdebug.debugContent",
Expand All @@ -288,13 +292,31 @@
},
{
"command": "tsp.deleteScriptGenSession",
"title": "Delete session",
"title": "Delete Script Generation Session",
"category": "TSP",
"icon": "$(trash)"
},
{
"command": "tsp.viewTriggerFlowUI",
"title": "New TriggerFlow Session",
"category": "TSP",
"icon": "$(add)"
},
{
"command": "tsp.deleteAllScriptGenSessions",
"title": "Delete all sessions",
"title": "Delete all Script Generation sessions",
"category": "TSP",
"icon": "$(trash)"
},
{
"command": "tsp.deleteTriggerFlowSession",
"title": "Delete TriggerFlow Session",
"category": "TSP",
"icon": "$(trash)"
},
{
"command": "tsp.deleteAllTriggerFlowSessions",
"title": "Delete all TriggerFlow sessions",
"category": "TSP",
"icon": "$(trash)"
}
Expand Down Expand Up @@ -357,6 +379,21 @@
}
}
}
},
"TriggerFlow": {
"type": "array",
"description": "Properties for TriggerFlow sessions.",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"config": {
"type": "string"
}
}
}
}
}
},
Expand Down Expand Up @@ -462,6 +499,14 @@
{
"command": "tsp.deleteScriptGenSession",
"when": "false"
},
{
"command": "tsp.viewTriggerFlowUI",
"when": "false"
},
{
"command": "tsp.deleteTriggerFlowSession",
"when": "false"
}
],
"view/item/context": [
Expand Down Expand Up @@ -534,6 +579,16 @@
"command": "tsp.deleteScriptGenSession",
"when": "viewItem == SavedIVCharInstance",
"group": "inline"
},
{
"command": "tsp.viewTriggerFlowUI",
"when": "viewItem == SavedTriggerFlowTreeItem",
"group": "inline"
},
{
"command": "tsp.deleteTriggerFlowSession",
"when": "viewItem == SavedTriggerFlowInstance",
"group": "inline"
}
],
"editor/title/run": [
Expand Down Expand Up @@ -698,7 +753,10 @@
"@tektronix/kic-cli-win32-x64": "0.21.3-4",
"@tektronix/script-gen-darwin-arm64": "0.1.2-0",
"@tektronix/script-gen-linux-x64": "0.1.2-0",
"@tektronix/script-gen-win32-x64": "0.1.2-0"
"@tektronix/script-gen-win32-x64": "0.1.2-0",
"@tektronix/trigger-flow-win32-x64": "0.1.0-0",
"@tektronix/trigger-flow-darwin-arm64": "0.1.0-0",
"@tektronix/trigger-flow-linux-x64": "0.1.0-0"
},
"extensionDependencies": [
"sumneko.lua"
Expand Down
Loading
Loading