-
Notifications
You must be signed in to change notification settings - Fork 55
Load store logs #95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Load store logs #95
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| { | ||
| "version": "0.2.0", | ||
| "configurations": [ | ||
| { | ||
| "name": "Debug DroneCAN GUI Tool", | ||
| "type": "debugpy", | ||
| "request": "launch", | ||
| "program": "${workspaceFolder}/bin/dronecan_gui_tool", | ||
| "console": "integratedTerminal", | ||
| "cwd": "${workspaceFolder}", | ||
| "python": "${workspaceFolder}/.venv/Scripts/python.exe", | ||
| "args": [ | ||
| "--debug" | ||
| ], | ||
| "justMyCode": true, | ||
| "env": { | ||
| "PYTHONPATH": "${workspaceFolder}" | ||
| } | ||
| }, | ||
| { | ||
| "name": "Debug DroneCAN GUI Tool (Module)", | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What are you trying to achieve by executing the main module? With debug enabled, this simply outputs all the dsdl parser information as it is processed at startup. There is no usable application context run.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Those are left overs from my attempts to make it run. I'll remove it |
||
| "type": "debugpy", | ||
| "request": "launch", | ||
| "module": "dronecan_gui_tool.main", | ||
| "console": "integratedTerminal", | ||
| "cwd": "${workspaceFolder}", | ||
| "python": "${workspaceFolder}/.venv/Scripts/python.exe", | ||
| "args": [ | ||
| "--debug" | ||
| ], | ||
| "justMyCode": true, | ||
| "env": { | ||
| "PYTHONPATH": "${workspaceFolder}" | ||
| } | ||
| } | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| { | ||
| "version": "2.0.0", | ||
| "tasks": [ | ||
| { | ||
| "label": "Run DroneCAN GUI Tool", | ||
| "type": "shell", | ||
| "command": "python", | ||
| "args": [ | ||
| "bin/dronecan_gui_tool", | ||
| "--debug" | ||
| ], | ||
| "group": "build", | ||
| "isBackground": false, | ||
| "problemMatcher": [] | ||
| } | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,7 +8,7 @@ | |
| # Andrew Tridgell | ||
| # | ||
| # | ||
| __version__ = 1, 2, 28 | ||
| __version__ = 1, 2, 29 | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Historically, the version isn't bumped until the immediately before the release.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure |
||
|
|
||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn't be specific to windows - if you're using vscode to launch it, it should be up to vscode to provide the environment you're using.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure...The reason I wanted to add this was to simplify it for the programmer. It took me several iterations until I made it run. I come from the bare metal embedded world, and usually when you have a project then you also add the IDE configuration files (there can be more than one), so anyone can just run it without any complications. I'll remove it