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 mbed official

Committer:
maxxir
Date:
Tue Nov 07 16:46:29 2017 +0000
Revision:
177:619788de047e
Parent:
169:e3b6fe271b81
To fix broken RTC on Nucleo_F103RB / STM32F103 BluePill etc..;  Used direct RTC register manipulation for STM32F1xx;  rtc_read() && rtc_write()  (native rtc_init() - works good);  also added stub for non-working on STM32F1xx rtc_read_subseconds().

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 169:e3b6fe271b81 1 /* mbed Microcontroller Library
Kojto 169:e3b6fe271b81 2 * Copyright (c) 2017 ARM Limited
Kojto 169:e3b6fe271b81 3 *
Kojto 169:e3b6fe271b81 4 * Licensed under the Apache License, Version 2.0 (the "License");
Kojto 169:e3b6fe271b81 5 * you may not use this file except in compliance with the License.
Kojto 169:e3b6fe271b81 6 * You may obtain a copy of the License at
Kojto 169:e3b6fe271b81 7 *
Kojto 169:e3b6fe271b81 8 * http://www.apache.org/licenses/LICENSE-2.0
Kojto 169:e3b6fe271b81 9 *
Kojto 169:e3b6fe271b81 10 * Unless required by applicable law or agreed to in writing, software
Kojto 169:e3b6fe271b81 11 * distributed under the License is distributed on an "AS IS" BASIS,
Kojto 169:e3b6fe271b81 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Kojto 169:e3b6fe271b81 13 * See the License for the specific language governing permissions and
Kojto 169:e3b6fe271b81 14 * limitations under the License.
Kojto 169:e3b6fe271b81 15 */
Kojto 169:e3b6fe271b81 16
Kojto 169:e3b6fe271b81 17 #include "hal/flash_api.h"
Kojto 169:e3b6fe271b81 18
Kojto 169:e3b6fe271b81 19 #if DEVICE_FLASH
Kojto 169:e3b6fe271b81 20
Kojto 169:e3b6fe271b81 21 #include "platform/mbed_toolchain.h"
Kojto 169:e3b6fe271b81 22 #include <string.h>
Kojto 169:e3b6fe271b81 23
Kojto 169:e3b6fe271b81 24 MBED_WEAK int32_t flash_read(flash_t *obj, uint32_t address, uint8_t *data, uint32_t size)
Kojto 169:e3b6fe271b81 25 {
Kojto 169:e3b6fe271b81 26 memcpy(data, (const void *)address, size);
Kojto 169:e3b6fe271b81 27 return 0;
Kojto 169:e3b6fe271b81 28 }
Kojto 169:e3b6fe271b81 29
Kojto 169:e3b6fe271b81 30 #endif