mbed library sources

Dependents:   Encrypted my_mbed lklk CyaSSL_DTLS_Cellular ... more

Superseded

This library was superseded by mbed-dev - https://os.mbed.com/users/mbed_official/code/mbed-dev/.

Development branch of the mbed library sources. This library is kept in synch with the latest changes from the mbed SDK and it is not guaranteed to work.

If you are looking for a stable and tested release, please import one of the official mbed library releases:

Import librarymbed

The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Revision:
228:85a676113daa
Parent:
221:8276e3a4886f
Child:
250:a49055e7a707
--- a/common/mbed_interface.c	Wed Jun 11 16:00:09 2014 +0100
+++ b/common/mbed_interface.c	Thu Jun 12 10:15:07 2014 +0100
@@ -38,7 +38,6 @@
     }
 }
 
-WEAK int mbed_interface_uid(char *uid);
 WEAK int mbed_interface_uid(char *uid) {
     if (mbed_interface_connected()) {
         return semihost_uid(uid); // Returns 0 if successful, -1 on failure
@@ -77,13 +76,11 @@
     mbed_interface_reset();
 }
 
-WEAK int mbed_uid(char *uid);
 WEAK int mbed_uid(char *uid) {
     return mbed_interface_uid(uid);
 }
 #endif
 
-WEAK void mbed_mac_address(char *mac);
 WEAK void mbed_mac_address(char *mac) {
 #if DEVICE_SEMIHOST
     char uid[DEVICE_ID_LENGTH + 1];