summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorBdale Garbee <bdale@gag.com>2013-04-22 13:00:26 -0600
committerBdale Garbee <bdale@gag.com>2013-04-22 13:00:26 -0600
commitaa7eac32adf4c2cdf441991d02411758f2682d1e (patch)
tree0a1e96e33be548eff60e5bcf843a1447fd886fe5 /src/core
parent8c05f608c8f103649c1e5ec0d5742621e233af78 (diff)
name change from MegaMetrum to TeleMega
Diffstat (limited to 'src/core')
-rw-r--r--src/core/ao_fec_rx.c2
-rw-r--r--src/core/ao_log.h2
-rw-r--r--src/core/ao_log_mega.c2
-rw-r--r--src/core/ao_telemetry.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/core/ao_fec_rx.c b/src/core/ao_fec_rx.c
index 072a9e90..c4f5559a 100644
--- a/src/core/ao_fec_rx.c
+++ b/src/core/ao_fec_rx.c
@@ -18,7 +18,7 @@
#include <ao_fec.h>
#include <stdio.h>
-#ifdef MEGAMETRUM
+#ifdef TELEMEGA
#include <ao.h>
#endif
diff --git a/src/core/ao_log.h b/src/core/ao_log.h
index cac78771..a68a40dd 100644
--- a/src/core/ao_log.h
+++ b/src/core/ao_log.h
@@ -43,7 +43,7 @@ extern __pdata enum ao_flight_state ao_log_state;
#define AO_LOG_FORMAT_TINY 2 /* two byte state/baro records */
#define AO_LOG_FORMAT_TELEMETRY 3 /* 32 byte ao_telemetry records */
#define AO_LOG_FORMAT_TELESCIENCE 4 /* 32 byte typed telescience records */
-#define AO_LOG_FORMAT_MEGAMETRUM 5 /* 32 byte typed megametrum records */
+#define AO_LOG_FORMAT_TELEMEGA 5 /* 32 byte typed telemega records */
#define AO_LOG_FORMAT_NONE 127 /* No log at all */
extern __code uint8_t ao_log_format;
diff --git a/src/core/ao_log_mega.c b/src/core/ao_log_mega.c
index ba3f7bfc..abf953a6 100644
--- a/src/core/ao_log_mega.c
+++ b/src/core/ao_log_mega.c
@@ -23,7 +23,7 @@
static __xdata uint8_t ao_log_mutex;
static __xdata struct ao_log_mega log;
-__code uint8_t ao_log_format = AO_LOG_FORMAT_MEGAMETRUM;
+__code uint8_t ao_log_format = AO_LOG_FORMAT_TELEMEGA;
static uint8_t
ao_log_csum(__xdata uint8_t *b) __reentrant
diff --git a/src/core/ao_telemetry.c b/src/core/ao_telemetry.c
index 3aa315c7..03aa48d8 100644
--- a/src/core/ao_telemetry.c
+++ b/src/core/ao_telemetry.c
@@ -29,7 +29,7 @@ static __pdata uint16_t ao_aprs_time;
#include <ao_aprs.h>
#endif
-#if defined(MEGAMETRUM)
+#if defined(TELEMEGA)
#define AO_SEND_MEGA 1
#endif