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:
548:1abac31e188e
Parent:
543:9dba91c44009
Child:
627:4fa1328d9c60
--- a/targets/hal/TARGET_Silicon_Labs/TARGET_EFM32/analogin_api.c	Fri May 22 09:45:08 2015 +0100
+++ b/targets/hal/TARGET_Silicon_Labs/TARGET_EFM32/analogin_api.c	Fri May 22 10:45:46 2015 +0100
@@ -52,12 +52,12 @@
     if (!adc_initialized) {
         /* Turn on the clock */
         CMU_ClockEnable(cmuClock_ADC0, true);
-        
+
         /* Init with default settings */
         ADC_Init_TypeDef init = ADC_INIT_DEFAULT;
         init.prescale = 4;
         ADC_Init(obj->adc, &init);
-        
+
         /* Init for single conversion use */
         ADC_InitSingle_TypeDef singleInit = ADC_INITSINGLE_DEFAULT;
 
@@ -67,7 +67,7 @@
         singleInit.acqTime = adcAcqTime32;
 
         ADC_InitSingle(obj->adc, &singleInit);
-        
+
         adc_initialized = 1;
     }
 }