diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-12 09:59:46 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-12 09:59:46 +0300 |
| commit | 58382f5f5376ba6ab3832e8606467881089ecf15 (patch) | |
| tree | 839625640c1cd885a19fedb310b7285aa9cd209d /src/c/fastforge.c | |
| parent | 860b9c1f1d97eec46d42a90dc9bf887233e7218e (diff) | |
h2: add day-1 fasting data model and persist keys
Diffstat (limited to 'src/c/fastforge.c')
| -rw-r--r-- | src/c/fastforge.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/c/fastforge.c b/src/c/fastforge.c index 5ffb912..d248ab8 100644 --- a/src/c/fastforge.c +++ b/src/c/fastforge.c @@ -1,4 +1,12 @@ #include <pebble.h> +#include "fastforge.h" + +FastEntry history[MAX_FASTS]; +int history_count = 0; +FastEntry current_fast = {0}; +uint16_t global_target_minutes = DEFAULT_TARGET_MINUTES; +AppTimer *alarm_timer = NULL; +time_t target_time = 0; static Window *s_main_window; static TextLayer *s_text_layer; |
