mirror of
https://github.com/odriverobotics/ODrive.git
synced 2026-08-21 06:23:07 +08:00
update VS Code settings
This commit is contained in:
Vendored
+7
-3
@@ -5,12 +5,16 @@
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Python",
|
||||
"name": "Debug Python Utility",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"stopOnEntry": true,
|
||||
"pythonPath": "${config:python.pythonPath}",
|
||||
"program": "${workspaceRoot}/tools/demo.py",
|
||||
"program": "${workspaceRoot}/tools/test_communication.py",
|
||||
"args": [
|
||||
// add specific arguments that you might wanna test
|
||||
//"--serial", "/dev/ttyUSB0"
|
||||
],
|
||||
"cwd": "${workspaceRoot}",
|
||||
"env": {},
|
||||
"envFile": "${workspaceRoot}/.env",
|
||||
@@ -23,7 +27,7 @@
|
||||
{
|
||||
"type": "gdb",
|
||||
"request": "attach",
|
||||
"name": "Launch Program",
|
||||
"name": "Debug Firmware",
|
||||
"target": "localhost:3333",
|
||||
"gdbpath": "arm-none-eabi-gdb",
|
||||
"remote": true,
|
||||
|
||||
Vendored
+3
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"C_Cpp.clang_format_style": "{ BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 0 }",
|
||||
"files.exclude": {
|
||||
"Firmware/build": true
|
||||
},
|
||||
"files.associations": {
|
||||
"memory": "cpp",
|
||||
"utility": "cpp",
|
||||
|
||||
Reference in New Issue
Block a user