Skip to content

Instantly share code, notes, and snippets.

@SAW4
Created December 20, 2017 11:41
Show Gist options
  • Save SAW4/640c223d29ba4649df6e50a3b6edebf2 to your computer and use it in GitHub Desktop.
Save SAW4/640c223d29ba4649df6e50a3b6edebf2 to your computer and use it in GitHub Desktop.
SublimeText Build system for KEIL uVision
{
"cmd": ["UV4", "-b", "-j0", "${file}"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.uvprojx",
"variants":
[
{
"name": "Flash",
"shell":true,
"cmd": ["UV4", "-f", "-j0", "${file}"]
},
{
"name": "Clean",
"shell":true,
"cmd": ["UV4", "-c", "-j0", "${file}"]
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment