From 4742b6cb57939c57588e6454814acbaa9b4d7662 Mon Sep 17 00:00:00 2001 From: Richard Meadows Date: Thu, 8 Oct 2015 23:42:18 +0100 Subject: [PATCH] Telemetry wakes up immediately --- firmware/src/cron.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/src/cron.c b/firmware/src/cron.c index df188ac..98395f5 100644 --- a/firmware/src/cron.c +++ b/firmware/src/cron.c @@ -39,9 +39,9 @@ struct tracker_time time = {0}; volatile uint32_t ticks = 0; -/* Indicates telemetry wakeup hysteresis. We wait until 3.3V before transmitting */ +/* Indicates telemetry wakeup hysteresis. We wake up immediately */ uint8_t has_telemetry_woken_up = 0; -#define TELEMETRY_WAKEUP_TEST(d) (d->battery > 3.3) +#define TELEMETRY_WAKEUP_TEST(d) (1) /* Pointer to latest datapoint */ struct tracker_datapoint* dp;