summaryrefslogtreecommitdiff
path: root/src/cc1111/ao_packet.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-10-07 09:53:09 -0600
committerKeith Packard <keithp@keithp.com>2011-10-07 09:54:32 -0600
commit258b75498916183ed250d3abb3282fe3d843e7a1 (patch)
treed71a42f289a8fb31caf40c51746a1c42d8886ba3 /src/cc1111/ao_packet.c
parent128bbfa150f88c09f7adde2434b7bf0b5a9ed556 (diff)
altos: Write xdata versions of memory functions1.0.9.1
These are significantly smaller than the general pointer versions from libc on the cc1111. Signed-off-by: Keith Packard <keithp@keithp.com> Conflicts: src/Makefile.proto src/cc1111/ao_adc.c src/cc1111/ao_packet_master.c src/core/ao.h Fix up the new makefiles
Diffstat (limited to 'src/cc1111/ao_packet.c')
-rw-r--r--src/cc1111/ao_packet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cc1111/ao_packet.c b/src/cc1111/ao_packet.c
index f627e02b..37ba92e0 100644
--- a/src/cc1111/ao_packet.c
+++ b/src/cc1111/ao_packet.c
@@ -35,7 +35,7 @@ ao_packet_send(void)
ao_led_on(AO_LED_RED);
/* If any tx data is pending then copy it into the tx packet */
if (ao_packet_tx_used && ao_tx_packet.len == 0) {
- memcpy(&ao_tx_packet.d, tx_data, ao_packet_tx_used);
+ ao_xmemcpy(&ao_tx_packet.d, tx_data, ao_packet_tx_used);
ao_tx_packet.len = ao_packet_tx_used;
ao_tx_packet.seq++;
ao_packet_tx_used = 0;
@@ -80,7 +80,7 @@ ao_packet_recv(void)
/* Copy data to the receive data buffer and set up the
* offsets
*/
- memcpy(rx_data, ao_rx_packet.packet.d, ao_rx_packet.packet.len);
+ ao_xmemcpy(rx_data, ao_rx_packet.packet.d, ao_rx_packet.packet.len);
ao_packet_rx_used = 0;
ao_packet_rx_len = ao_rx_packet.packet.len;