diff options
| author | Keith Packard <keithp@keithp.com> | 2012-12-14 11:11:39 -0800 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2012-12-14 11:11:39 -0800 |
| commit | fc2e5beb9173663e1e37a9b5a7b6eea1046222f7 (patch) | |
| tree | 3ea25ff6d18739d917df57dac9f45f161f17c43b /src/micropeak/Makefile | |
| parent | 73422bf72e07b169bfe37b02518b9e7479931971 (diff) | |
altos: Log baro readings for MicroPeak
This logs barometric data every 192ms (more or less) to the 504
remaining bytes of internal EEPROM storage in the ATtiny85. This
provides 48.192 seconds of logging.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/micropeak/Makefile')
| -rw-r--r-- | src/micropeak/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/micropeak/Makefile b/src/micropeak/Makefile index 0c48ed66..82944cb1 100644 --- a/src/micropeak/Makefile +++ b/src/micropeak/Makefile @@ -20,13 +20,6 @@ ifndef VERSION include ../Version endif -# Support for a logging EEPROM -# -#EEPROM_SRC=ao_async.c \ -# ao_i2c_attiny.c \ -# ao_at24c.c -# - ALTOS_SRC = \ ao_micropeak.c \ ao_spi_attiny.c \ @@ -39,7 +32,8 @@ ALTOS_SRC = \ ao_notask.c \ ao_eeprom_tiny.c \ ao_panic.c \ - $(EEPROM_SRC) + ao_log_micro.c \ + ao_async.c INC=\ ao.h \ @@ -48,6 +42,8 @@ INC=\ ao_arch_funcs.h \ ao_exti.h \ ao_ms5607.h \ + ao_log_micro.h \ + ao_micropeak.h \ altitude-pa.h IDPRODUCT=0 |
