Skip to content

Commit 57e896e

Browse files
committed
Rename to PrimeTime and move font to the external storage
1 parent f532e0b commit 57e896e

9 files changed

Lines changed: 44 additions & 382 deletions

File tree

docker/build.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ GetGcc() {
5555
echo "missing GCC path: $TOOLS_DIR/$GCC_ARM_PATH"
5656
return 1
5757
fi
58+
if [ ! -d "$TOOLS_DIR/$GCC_ARM_PATH" ]; then
59+
echo "missing GCC path: $TOOLS_DIR/$GCC_ARM_PATH"
60+
return 1
61+
fi
5862
}
5963

6064
GetMcuBoot() {
@@ -64,6 +68,10 @@ GetMcuBoot() {
6468
echo "missing mcuboot path: $TOOLS_DIR/mcuboot"
6569
return 1
6670
fi
71+
if [ ! -d "$TOOLS_DIR/mcuboot" ]; then
72+
echo "missing mcuboot path: $TOOLS_DIR/mcuboot"
73+
return 1
74+
fi
6775
}
6876

6977
GetNrfSdk() {
@@ -74,6 +82,10 @@ GetNrfSdk() {
7482
echo "missing NRF_SDK path: $TOOLS_DIR/$NRF_SDK_VER"
7583
return 1
7684
fi
85+
if [ ! -d "$TOOLS_DIR/$NRF_SDK_VER" ]; then
86+
echo "missing NRF_SDK path: $TOOLS_DIR/$NRF_SDK_VER"
87+
return 1
88+
fi
7789
}
7890

7991
CmakeGenerate() {

src/displayapp/apps/Apps.h.in

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,9 @@ namespace Pinetime {
5353
Terminal,
5454
Infineat,
5555
CasioStyleG7710,
56-
<<<<<<< HEAD
5756
PrimeTime,
5857
=======
59-
Prime,
60-
>>>>>>> accbd757 (include prime watchface)
58+
>>>>>>> 74895afb (resolve conflicts)
6159
};
6260

6361
template <Apps>

src/displayapp/apps/CMakeLists.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@ else()
2828
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::Terminal")
2929
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::Infineat")
3030
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::CasioStyleG7710")
31-
<<<<<<< HEAD
3231
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::PrimeTime")
3332
=======
34-
set(DEFAULT_WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}, WatchFace::Prime")
35-
>>>>>>> accbd757 (include prime watchface)
33+
>>>>>>> 9205a2b3 (resolve conflicts)
3634
set(WATCHFACE_TYPES "${DEFAULT_WATCHFACE_TYPES}" CACHE STRING "List of watch faces to build into the firmware")
3735
endif()
3836

src/displayapp/fonts/Karnivore.ttf

30.4 KB
Binary file not shown.

src/displayapp/fonts/fonts.json

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -73,18 +73,5 @@
7373
],
7474
"bpp": 1,
7575
"size": 25
76-
<<<<<<< HEAD
77-
=======
78-
},
79-
"prime": {
80-
"sources": [
81-
{
82-
"file": "Karnivore.ttf",
83-
"symbols": "0123456789:"
84-
}
85-
],
86-
"bpp": 1,
87-
"size": 85
88-
>>>>>>> faf39851 (correctly include new font)
8976
}
9077
}

src/displayapp/screens/WatchFacePrime.cpp

Lines changed: 0 additions & 221 deletions
This file was deleted.

0 commit comments

Comments
 (0)