mbed library sources. Supersedes mbed-src. Fixed broken STM32F1xx RTC on rtc_api.c
Dependents: Nucleo_F103RB_RTC_battery_bkup_pwr_off_okay
Fork of mbed-dev by
Diff: targets/TARGET_ONSEMI/TARGET_NCS36510/rtc.c
- Revision:
- 174:b96e65c34a4d
- Parent:
- 167:e84263d55307
diff -r e131a1973e81 -r b96e65c34a4d targets/TARGET_ONSEMI/TARGET_NCS36510/rtc.c --- a/targets/TARGET_ONSEMI/TARGET_NCS36510/rtc.c Fri Sep 15 14:59:18 2017 +0100 +++ b/targets/TARGET_ONSEMI/TARGET_NCS36510/rtc.c Mon Oct 02 15:33:19 2017 +0100 @@ -125,17 +125,6 @@ { uint64_t current_time = fRtcRead(); - /* compute delta between current time and timestamp. - * Note: the current time used to compute the delta is relative (truncated - * to 32 bits). - */ - int32_t delta = timestamp - (uint32_t) current_time; - if (delta <= 0) { - // event considered in the past, set the interrupt as pending. - NVIC_SetPendingIRQ(Rtc_IRQn); - return; - } - uint64_t full_timestamp = (current_time & ~UINT32_MAX) | timestamp; if ( (uint32_t)current_time > timestamp) { full_timestamp += ((uint64_t) UINT32_MAX) + 1;