diff --git a/.gitignore b/.gitignore index 17c9665295ba08..2ea31517329c38 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ a.out *.vcd config.json clcache +.vscode/*.json board/obj/ selfdrive/boardd/boardd diff --git a/.vscode/sftp.json b/.vscode/sftp.json index f8cc070ad346cd..7fdbd7c2f3b863 100644 --- a/.vscode/sftp.json +++ b/.vscode/sftp.json @@ -1,10 +1,27 @@ { - "name": "HomeWiFi", - "host": "192.168.1.33", "protocol": "sftp", "port": 8022, "username": "root", - "remotePath": "/", "privateKeyPath": "~/.ssh/openpilot2_rsa", - "uploadOnSave": true + "uploadOnSave": true, + "autoUpload": true, + "profiles": { + "Home-OpenPilot": { + "host": "192.168.1.33", + "remotePath": "/data/openpilot" + }, + "Home-EON": { + "host": "192.168.1.33", + "remotePath": "/" + }, + "Hotspot-OpenPilot": { + "host": "192.168.1.33", + "remotePath": "/data/openpilot" + }, + "Hotspot-EON": { + "host": "192.168.43.1", + "remotePath": "/" + }, + "defaultProfile": "Home-EON" + } }