This is a RTC additional function. This is only for Nucleo F401RE & F411RE mbed(Added L152RE, F334R8, L476RG & F746xx). If you connected battery backup circuit for internal RTC, you can make a power-off and reset condition. RTC still has proper time and date.

Dependents:   Nucleo_rtos_sample PB_Emma_Ethernet

Please refer following NOTE information.
/users/kenjiArai/notebook/nucleo-series-rtc-control-under-power-onoff-and-re/

Committer:
kenjiArai
Date:
Sat Jul 02 03:00:33 2016 +0000
Revision:
14:78e453d7bb85
Parent:
13:44e5327acb05
Added F746xx and modified main.c

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kenjiArai 2:765470eab2a6 1 /*
kenjiArai 2:765470eab2a6 2 * mbed Application program
kenjiArai 2:765470eab2a6 3 * Library differ part (This is only information document)
kenjiArai 2:765470eab2a6 4 *
kenjiArai 13:44e5327acb05 5 * Copyright (c) 2016 Kenji Arai / JH1PJL
kenjiArai 2:765470eab2a6 6 * http://www.page.sannet.ne.jp/kenjia/index.html
kenjiArai 2:765470eab2a6 7 * http://mbed.org/users/kenjiArai/
kenjiArai 13:44e5327acb05 8 * Created: May 28th, 2016
kenjiArai 14:78e453d7bb85 9 * Revised: July 2nd, 2016
kenjiArai 2:765470eab2a6 10 *
kenjiArai 2:765470eab2a6 11 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
kenjiArai 2:765470eab2a6 12 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
kenjiArai 2:765470eab2a6 13 * AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
kenjiArai 2:765470eab2a6 14 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
kenjiArai 2:765470eab2a6 15 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
kenjiArai 2:765470eab2a6 16 */
kenjiArai 2:765470eab2a6 17 //*************************************************************************************************
kenjiArai 2:765470eab2a6 18 // Replace following files in the library
kenjiArai 13:44e5327acb05 19 // rtc_api.c -> rtc_api_L476.c
kenjiArai 2:765470eab2a6 20 //*************************************************************************************************
kenjiArai 2:765470eab2a6 21 //
kenjiArai 12:4074fe3e67c7 22 // (1) Update mbed-dev library if you want
kenjiArai 14:78e453d7bb85 23 // (2) File rtc_api_L476.c copy to directry
kenjiArai 13:44e5327acb05 24 // /mbed-dev/targets/hal/TARGET_STM/TARGET_STM32L4/
kenjiArai 2:765470eab2a6 25 // (3) Delete rtc_api.c in the same directory
kenjiArai 13:44e5327acb05 26 // (4) Edit rtc_api_L476.c
kenjiArai 13:44e5327acb05 27 // Modify 1st line #if 0 --> #if 1
kenjiArai 2:765470eab2a6 28 //