summaryrefslogtreecommitdiffstats
path: root/make.mk
diff options
context:
space:
mode:
authorMatheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com>2024-03-05 00:49:57 -0300
committerMatheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com>2024-03-08 06:54:22 -0300
commit4b269c50634e2ff6ce7e5ceb79ca877f4dd7c550 (patch)
treee793223257246f4c52b6d9735dbab97c9a22c530 /make.mk
parent7208df1dfb560a29962e7054e497dcb89c64ea5a (diff)
parent4a66035f77a116f1b360110fe1f3f413f9af741e (diff)
downloadSensor-Watch-4b269c50634e2ff6ce7e5ceb79ca877f4dd7c550.tar.gz
Sensor-Watch-4b269c50634e2ff6ce7e5ceb79ca877f4dd7c550.tar.bz2
Sensor-Watch-4b269c50634e2ff6ce7e5ceb79ca877f4dd7c550.zip
Merge branch 'advanced-clock+24h' into advanced
Completely refactors the simple clock face and lays the foundations for new features. Also adds a compile time 24 hour mode only feature. Tested-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Tested-on-hardware-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Signed-off-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/373
Diffstat (limited to 'make.mk')
-rw-r--r--make.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/make.mk b/make.mk
index 891f9363..bb2d1537 100644
--- a/make.mk
+++ b/make.mk
@@ -230,3 +230,9 @@ endif
ifeq ($(BOARD), OSO-FEAL-A1-00)
CFLAGS += -DCRYSTALLESS
endif
+
+# Build options to customize movement and faces
+
+ifdef CLOCK_FACE_24H_ONLY
+CFLAGS += -DCLOCK_FACE_24H_ONLY
+endif