summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-04-09 22:53:12 -0700
committerKeith Packard <keithp@keithp.com>2011-04-09 22:53:12 -0700
commit7f49d694e776819e03b2c708e1c4ee23ba311430 (patch)
tree9c58c83fd17633b1fb1770dca64cbfec096416b9 /src
parent835ab3a8c2741a09b27de58c37439a193c9919ce (diff)
altos/altosui: Log averaged baro sensor data in Tm/Tn
Instead of logging the best height guess from the kalman filter, log barometer data. The logged data consists of the average value betwen log points to reduce noise. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src')
-rw-r--r--src/ao_log_tiny.c35
1 files changed, 25 insertions, 10 deletions
diff --git a/src/ao_log_tiny.c b/src/ao_log_tiny.c
index f0c0662a..6c2468fc 100644
--- a/src/ao_log_tiny.c
+++ b/src/ao_log_tiny.c
@@ -44,9 +44,12 @@ static void ao_log_tiny_data(uint16_t d)
void
ao_log(void)
{
- uint16_t time;
- int16_t delay;
+ uint16_t last_time;
+ uint16_t now;
enum ao_flight_state ao_log_tiny_state;
+ int32_t sum;
+ int16_t count;
+ uint8_t ao_log_adc;
ao_storage_setup();
@@ -57,9 +60,19 @@ ao_log(void)
while (!ao_log_running)
ao_sleep(&ao_log_running);
- time = ao_time();
ao_log_tiny_data(ao_flight_number);
+ ao_log_tiny_data(ao_ground_pres);
+ sum = 0;
+ count = 0;
+ ao_log_adc = ao_sample_adc;
+ last_time = ao_time();
for (;;) {
+ ao_sleep(DATA_TO_XDATA(&ao_sample_adc));
+ while (ao_log_adc != ao_sample_adc) {
+ sum += ao_adc_ring[ao_log_adc].pres;
+ count++;
+ ao_log_adc = ao_adc_ring_next(ao_log_adc);
+ }
if (ao_flight_state != ao_log_tiny_state) {
ao_log_tiny_data(ao_flight_state | 0x8000);
ao_log_tiny_state = ao_flight_state;
@@ -69,14 +82,16 @@ ao_log(void)
if (ao_log_tiny_state == ao_flight_landed)
ao_log_stop();
}
- ao_log_tiny_data(ao_height);
- time += ao_log_tiny_interval;
- delay = time - ao_time();
- if (delay > 0)
- ao_delay(delay);
/* Stop logging when told to */
- while (!ao_log_running)
- ao_sleep(&ao_log_running);
+ if (!ao_log_running)
+ ao_exit();
+ now = ao_time();
+ if ((int16_t) (now - (last_time + ao_log_tiny_interval)) >= 0 && count) {
+ ao_log_tiny_data(sum / count);
+ sum = 0;
+ count = 0;
+ last_time = now;
+ }
}
}