diff options
author | Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> | 2024-02-25 15:18:45 -0300 |
---|---|---|
committer | Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> | 2024-03-05 00:46:27 -0300 |
commit | 4a66035f77a116f1b360110fe1f3f413f9af741e (patch) | |
tree | d357ac5cbfbf8d49ad94abe3fcd00e1ed8a25646 /make.mk | |
parent | 4cca3a0fac642897bdec06307522f171aa7d9f3b (diff) | |
download | Sensor-Watch-4a66035f77a116f1b360110fe1f3f413f9af741e.tar.gz Sensor-Watch-4a66035f77a116f1b360110fe1f3f413f9af741e.tar.bz2 Sensor-Watch-4a66035f77a116f1b360110fe1f3f413f9af741e.zip |
faces/clock: add 24h only feature
The clock watch face can now be configured at build time
to only display the time in 24h mode. Also enabled in forced 24h mode.
This should result in smaller code size due to dead code elimination.
Diffstat (limited to 'make.mk')
-rw-r--r-- | make.mk | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -229,3 +229,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 |