Skip to content

Commit 6608cf9

Browse files
committed
include prime watchface
1 parent 6550db1 commit 6608cf9

58 files changed

Lines changed: 47009 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.vscode/settings.json.orig

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
3+
"cmake.configureArgs": [
4+
"-DARM_NONE_EABI_TOOLCHAIN_PATH=${env:TOOLS_DIR}/${env:GCC_ARM_PATH}",
5+
"-DNRF5_SDK_PATH=${env:TOOLS_DIR}/${env:NRF_SDK_VER}",
6+
],
7+
"cmake.statusbar.advanced": {
8+
"launch": {
9+
"visibility": "hidden"
10+
},
11+
"launchTarget": {
12+
"visibility": "hidden"
13+
},
14+
"debug": {
15+
"visibility": "hidden"
16+
}
17+
},
18+
"cmake.generator": "Unix Makefiles",
19+
"clang-tidy.buildPath": "build/compile_commands.json",
20+
"files.associations": {
21+
"array": "cpp",
22+
"atomic": "cpp",
23+
"bit": "cpp",
24+
"*.tcc": "cpp",
25+
"bitset": "cpp",
26+
"cctype": "cpp",
27+
"chrono": "cpp",
28+
"clocale": "cpp",
29+
"cmath": "cpp",
30+
"cstdarg": "cpp",
31+
"cstddef": "cpp",
32+
"cstdint": "cpp",
33+
"cstdio": "cpp",
34+
"cstdlib": "cpp",
35+
"ctime": "cpp",
36+
"cwchar": "cpp",
37+
"cwctype": "cpp",
38+
"deque": "cpp",
39+
"unordered_map": "cpp",
40+
"vector": "cpp",
41+
"exception": "cpp",
42+
"algorithm": "cpp",
43+
"functional": "cpp",
44+
"iterator": "cpp",
45+
"memory": "cpp",
46+
"memory_resource": "cpp",
47+
"numeric": "cpp",
48+
"optional": "cpp",
49+
"random": "cpp",
50+
"ratio": "cpp",
51+
"string": "cpp",
52+
"string_view": "cpp",
53+
"system_error": "cpp",
54+
"tuple": "cpp",
55+
"type_traits": "cpp",
56+
"utility": "cpp",
57+
"fstream": "cpp",
58+
"initializer_list": "cpp",
59+
"iosfwd": "cpp",
60+
"istream": "cpp",
61+
"limits": "cpp",
62+
"new": "cpp",
63+
"ostream": "cpp",
64+
"sstream": "cpp",
65+
"stdexcept": "cpp",
66+
"streambuf": "cpp",
67+
"cinttypes": "cpp",
68+
"typeinfo": "cpp",
69+
<<<<<<< HEAD
70+
"compare": "cpp"
71+
=======
72+
"ios": "cpp",
73+
"disc.c": "cpp"
74+
>>>>>>> music_redesign
75+
}
76+
}

build.backup/compile_commands.json

Lines changed: 2982 additions & 0 deletions
Large diffs are not rendered by default.

build.backup/compile_commands.json.tmp3e27b

Lines changed: 1994 additions & 0 deletions
Large diffs are not rendered by default.
52.6 KB
Binary file not shown.
52.7 KB
Binary file not shown.
373 KB
Binary file not shown.
387 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

build.backup/post_build.sh

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/bin/sh
2+
export LC_ALL=C.UTF-8
3+
export LANG=C.UTF-8
4+
set -e
5+
set +x
6+
7+
export PROJECT_VERSION="1.15.0"
8+
9+
mkdir -p "$OUTPUT_DIR"
10+
11+
cp "$SOURCES_DIR"/bootloader/bootloader-5.0.4.bin $OUTPUT_DIR/bootloader.bin
12+
cp "$BUILD_DIR/src/pinetime-mcuboot-app-image-$PROJECT_VERSION.bin" "$OUTPUT_DIR/pinetime-mcuboot-app-image-$PROJECT_VERSION.bin"
13+
cp "$BUILD_DIR/src/pinetime-mcuboot-app-dfu-$PROJECT_VERSION.zip" "$OUTPUT_DIR/pinetime-mcuboot-app-dfu-$PROJECT_VERSION.zip"
14+
15+
cp "$BUILD_DIR/src/pinetime-mcuboot-recovery-loader-image-$PROJECT_VERSION.bin" "$OUTPUT_DIR/pinetime-mcuboot-recovery-loader-image-$PROJECT_VERSION.bin"
16+
cp "$BUILD_DIR/src/pinetime-mcuboot-recovery-loader-dfu-$PROJECT_VERSION.zip" "$OUTPUT_DIR/pinetime-mcuboot-recovery-loader-dfu-$PROJECT_VERSION.zip"
17+
18+
cp "$BUILD_DIR/src/resources/infinitime-resources-$PROJECT_VERSION.zip" "$OUTPUT_DIR/infinitime-resources-$PROJECT_VERSION.zip"
19+
20+
mkdir -p "$OUTPUT_DIR/src"
21+
cp $BUILD_DIR/src/*.bin "$OUTPUT_DIR/src/"
22+
cp $BUILD_DIR/src/*.hex "$OUTPUT_DIR/src/"
23+
cp $BUILD_DIR/src/*.out "$OUTPUT_DIR/src/"
24+
cp $BUILD_DIR/src/*.map "$OUTPUT_DIR/src/"
25+
26+
ls -RUv1 "$OUTPUT_DIR" | sed 's;^\([^/]\); \1;g'

0 commit comments

Comments
 (0)