2022-01-02 09:46:57 +01:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"name": "Build SW and Update",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "sw/pc/sc64.py",
|
|
|
|
"preLaunchTask": "build",
|
|
|
|
"args": [
|
|
|
|
"-u", "fw/output_files/SC64_update.bin",
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Build FW & SW and Update",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "sw/pc/sc64.py",
|
|
|
|
"preLaunchTask": "build_full",
|
|
|
|
"args": [
|
|
|
|
"-u", "fw/output_files/SC64_update.bin",
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Run menu from SD with debug output",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "sw/pc/sc64.py",
|
|
|
|
"args": [
|
|
|
|
"-b", "0",
|
|
|
|
"-q",
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Run menu from USB with debug output",
|
|
|
|
"type": "python",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "sw/pc/sc64.py",
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"linux": {
|
|
|
|
"args": [
|
|
|
|
"-f", "/dev/ttyUSB0",
|
2022-01-11 23:41:13 +01:00
|
|
|
"-b", "4",
|
2022-01-02 09:46:57 +01:00
|
|
|
"-q",
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"windows": {
|
|
|
|
"args": [
|
|
|
|
"-f", "\\\\.\\D:",
|
2022-01-11 23:41:13 +01:00
|
|
|
"-b", "4",
|
2022-01-02 09:46:57 +01:00
|
|
|
"-q",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|