Browse Source

Added sublime build system that uploads just built product

Renamed existing build system to be more verbose
sbg
Anton Matosov 10 years ago
parent
commit
610a714e85
  1. 12
      Firmware.sublime-project

12
Firmware.sublime-project vendored

@ -38,10 +38,18 @@ @@ -38,10 +38,18 @@
"build_systems":
[
{
"name": "PX4",
"name": "PX4: make all",
"working_dir": "${project_path}",
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"cmd": ["make"]
"cmd": ["make -j8"],
"shell": true
},
{
"name": "PX4: make and upload",
"working_dir": "${project_path}",
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"cmd": ["make upload px4fmu-v2_default -j8"],
"shell": true
}
]
}

Loading…
Cancel
Save