altos: Replace ao_xmem functions with direct mem calls
[fw/altos] / src / drivers / ao_packet_slave.c
index a5834799d7e8df306a907f3e793d14cb1df9f3cf..314ce14a2bc3866406e54c9306eefc842ec307b0 100644 (file)
@@ -26,7 +26,7 @@ ao_packet_slave(void)
        ao_packet_restart = 1;
        while (ao_packet_enable) {
                if (ao_packet_recv(0)) {
-                       ao_xmemcpy(&ao_tx_packet.callsign, &ao_rx_packet.packet.callsign, AO_MAX_CALLSIGN);
+                       memcpy(&ao_tx_packet.callsign, &ao_rx_packet.packet.callsign, AO_MAX_CALLSIGN);
 #if HAS_FLIGHT
                        ao_flight_force_idle = true;
 #endif