Our team has been used to programming robots with VEXCode Pro V5, but we now feel that it is not as good as vscode in some aspects, such as the inability to use plugins or the lack of auto-save features.
After doing some research we only found out how to use PROS on vscode, we want to know if there is a way to use vexcode pro v5 on vscode so maybe I can program on linux.
At the moment, I have the .vscode folder configured and I can get all the codes to display properly in vscode, I would like to know how to download programs into the robot brain using only vscode (like PROS on vscode uses commands to download), I now often Use vscode to program and then use vexcode to download, but this is too complicated and can’t be used on linux
I wonder if there is a way to download on vscode, thanks.
The followings are mine. vscode file
c_cpp_properties.json
{
"configurations": [
{
"name": "Win32",
"includePath": [
"C:\\Program Files (x86)\\VEX Robotics\\VEXcode Pro V5\\sdk\\vexv5\\include",
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "C:\\mingw64\\bin\\gcc.exe",
"cStandard": "gnu17",
"cppStandard": "gnu++14",
"intelliSenseMode": "windows-gcc-x64",
"compileCommands": "${workspaceFolder}/compile_commands.json"
}
],
"version": 4
}
settings.json
{
"files.associations": {
"iterator": "cpp"
}
}