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:
462:e03396e14338
Parent:
15:4892fe388435
--- a/targets/hal/TARGET_NXP/TARGET_LPC408X/rtc_api.c	Mon Feb 02 16:00:07 2015 +0000
+++ b/targets/hal/TARGET_NXP/TARGET_LPC408X/rtc_api.c	Tue Feb 03 13:15:07 2015 +0000
@@ -28,7 +28,6 @@
  * Clock Control Register
  *  RTC_CCR[0] : Enable - 0 = Disabled, 1 = Enabled
  *  RTC_CCR[1] : Reset - 0 = Normal, 1 = Reset
- *  RTC_CCR[4] : Clock Source - 0 = Prescaler, 1 = 32k Xtal
  *
  * The RTC may already be running, so we should set it up
  * without impacting if it is the case
@@ -37,7 +36,6 @@
     LPC_SC->PCONP |= 0x200; // Ensure power is on
     LPC_RTC->CCR = 0x00;
     
-// clock source on 2368 is special test mode on 1768!
     LPC_RTC->CCR |= 1 << 0; // Ensure the RTC is enabled
 }