-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathztime.sublime-project
58 lines (58 loc) · 1.65 KB
/
ztime.sublime-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"build_systems":
[
{
"name": "ztime",
"variants":
[
{
"shell_cmd": "west build -p auto -b pinetime && imgtool create --align 4 --version 1.0.0 --header-size 512 --slot-size 475136 build/zephyr/zephyr.bin build/zephyr/zephyr.mcu.bin && adafruit-nrfutil dfu genpkg --dev-type 0x0052 --application build/zephyr/zephyr.mcu.bin build/zephyr/zephyr.zip",
"name": "build"
},
{
"shell_cmd": "rm -rf build",
"name": "clean"
},
/*{
"shell_cmd": "west flash --runner jlink",
"name": "flash-jlink"
},*/
/*{
"shell_cmd": "west flash",
"name": "flash"
},*/
],
"working_dir": "${project_path}"
}
],
"folders":
[
{
"path": ".",
"folder_exclude_patterns":[
".west",
"build",
"_build",
"Output",
],
"file_exclude_patterns":[
"*.zip",
"*.bin",
"*.csv",
"*.hex",
"*.jlink",
"*.tags",
".tags_sorted_by_file",
]
},
],
"settings":
{
"ensure_newline_at_eof_on_save": true,
"highlight_line": true,
"rulers": [80],
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}
}