summaryrefslogtreecommitdiff
path: root/src/kernel/ao_monitor.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2019-09-15 17:09:26 -0700
committerKeith Packard <keithp@keithp.com>2019-09-15 17:09:26 -0700
commit99525a748e00406424b98a0952f0156437b30b6c (patch)
treec71afba2173632314441f89325594774d6123d70 /src/kernel/ao_monitor.c
parent46d3cbadce6808b4cd29ad1e034efac7b5e4fa42 (diff)
altos: Replace ao_xmem functions with direct mem calls
We no longer need to wrap these functions Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/kernel/ao_monitor.c')
-rw-r--r--src/kernel/ao_monitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/ao_monitor.c b/src/kernel/ao_monitor.c
index 400ae4df..cd511699 100644
--- a/src/kernel/ao_monitor.c
+++ b/src/kernel/ao_monitor.c
@@ -157,7 +157,7 @@ ao_monitor_put(void)
state = recv_orig.telemetry_orig.flight_state;
rssi = (int16_t) AO_RSSI_FROM_RADIO(recv_orig.rssi);
- ao_xmemcpy(callsign, recv_orig.telemetry_orig.callsign, AO_MAX_CALLSIGN);
+ memcpy(callsign, recv_orig.telemetry_orig.callsign, AO_MAX_CALLSIGN);
if (state > ao_flight_invalid)
state = ao_flight_invalid;
if (recv_orig.status & PKT_APPEND_STATUS_1_CRC_OK) {