Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed simple-demo-76 LoRaWAN-lib SingleFrequencyLora
Fork of simple-demo-76 by
Diff: system/utilities.cpp
- Revision:
- 3:9c6f7f082151
- Parent:
- 1:352f608c3337
diff -r 01e3c65c7c3a -r 9c6f7f082151 system/utilities.cpp
--- a/system/utilities.cpp	Thu Nov 26 17:22:53 2015 +0000
+++ b/system/utilities.cpp	Thu Jan 07 15:14:22 2016 +0000
@@ -51,6 +51,15 @@
     }
 }
 
+void memcpyr( uint8_t *dst, const uint8_t *src, uint16_t size )
+{
+    dst = dst + ( size - 1 );
+    while( size-- )
+    {
+        *dst-- = *src++;
+    }
+}
+
 void memset1( uint8_t *dst, uint8_t value, uint16_t size )
 {
     while( size-- )
    