Skip to content

Commit

Permalink
Linked 4200A Appnotes
Browse files Browse the repository at this point in the history
Linked appnotes for general KXCI and PMU usage in read mes
  • Loading branch information
Little-LIZard committed Jun 10, 2024
1 parent 2d6f1e8 commit dc3ee48
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"files.associations": {
"*.tsp": "lua"
},
"Lua.diagnostics.libraryFiles": "Disable",
"Lua.workspace.ignoreDir": [],
"Lua.workspace.library": []
}
6 changes: 6 additions & 0 deletions .vscode/tspConfig/config.tsp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "./tspSchema.json",
"nodes":{
},
"self": ""
}
Empty file added .vscode/tspConfig/nodeTable.tsp
Empty file.
35 changes: 35 additions & 0 deletions .vscode/tspConfig/tspSchema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"nodes": {
"type": "object",
"patternProperties": {
"^node\\d+$": {
"type": "object",
"properties": {
"model": {
"type": "string",
"enum": ["2450","2460","2461","2470","2601B","2602B","2604B","2611B","2612B","2614B","2634B","2635B","2636B","DMM7510"]
},
"slots": {
"type": "object",
"patternProperties": {
"^slot\\d+$": {
"type": "string"
}
},
"minProperties": 1
}
},
"required": ["model"]
}
}
},
"self": {
"type": "string",
"enum": ["2450","2460","2461","2470","2601B","2602B","2604B","2611B","2612B","2614B","2634B","2635B","2636B","DMM7510"]
}
}

}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PMU

These examples are for external control of the 4200A PMU with the KXCI application running on it and using a PC.
These examples are for external control of the 4200A PMU with the KXCI application running on it and using a PC. For information on running IV tests with the PMU, see the application note **[Pulse IV Test Automation with the Keithley 4225-PMU Pulse Measure Unit](https://www.tek.com/en/documents/application-note/pulse-iv-test-automation-with-the-keithley-4225-pmu-pulse-measure-unit)**

Requirements

Expand Down
2 changes: 1 addition & 1 deletion Instrument_Examples/Model_4200A/KXCI_Examples/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# KXCI

These examples are for external control of the 4200A with the KXCI application running on it and using a PC.
These examples are for external control of the 4200A with the KXCI application running on it and using a PC. For more information on how to set up and use KXCI for remote control of the 4200A, see the application note **[Controlling the Keithley 4200A-SCS Parameter Analyzer Using the External Control Interface (KXCI) and Python 3](https://www.tek.com/en/documents/application-note/controlling-the-4200a-scs-parameter-analyzer-using-kxci-and-python-3)**

## Directory

Expand Down

0 comments on commit dc3ee48

Please sign in to comment.