mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
AnnaBridge
Date:
Thu Sep 06 13:40:20 2018 +0100
Revision:
187:0387e8f68319
Parent:
181:57724642e740
Child:
188:bcfe06ba3d64
mbed-dev library. Release version 163

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AnnaBridge 168:9672193075cf 1 /* mbed Microcontroller Library
AnnaBridge 168:9672193075cf 2 * Copyright (c) 2017, STMicroelectronics
AnnaBridge 168:9672193075cf 3 * All rights reserved.
AnnaBridge 168:9672193075cf 4 *
AnnaBridge 168:9672193075cf 5 * Redistribution and use in source and binary forms, with or without
AnnaBridge 168:9672193075cf 6 * modification, are permitted provided that the following conditions are met:
AnnaBridge 168:9672193075cf 7 *
AnnaBridge 168:9672193075cf 8 * 1. Redistributions of source code must retain the above copyright notice,
AnnaBridge 168:9672193075cf 9 * this list of conditions and the following disclaimer.
AnnaBridge 168:9672193075cf 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
AnnaBridge 168:9672193075cf 11 * this list of conditions and the following disclaimer in the documentation
AnnaBridge 168:9672193075cf 12 * and/or other materials provided with the distribution.
AnnaBridge 168:9672193075cf 13 * 3. Neither the name of STMicroelectronics nor the names of its contributors
AnnaBridge 168:9672193075cf 14 * may be used to endorse or promote products derived from this software
AnnaBridge 168:9672193075cf 15 * without specific prior written permission.
AnnaBridge 168:9672193075cf 16 *
AnnaBridge 168:9672193075cf 17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AnnaBridge 168:9672193075cf 18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
AnnaBridge 168:9672193075cf 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
AnnaBridge 168:9672193075cf 20 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
AnnaBridge 168:9672193075cf 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
AnnaBridge 168:9672193075cf 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
AnnaBridge 168:9672193075cf 23 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
AnnaBridge 168:9672193075cf 24 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
AnnaBridge 168:9672193075cf 25 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
AnnaBridge 168:9672193075cf 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
AnnaBridge 168:9672193075cf 27 */
AnnaBridge 168:9672193075cf 28 #include "cmsis.h"
AnnaBridge 168:9672193075cf 29
AnnaBridge 187:0387e8f68319 30 int mbed_sdk_inited = 0;
AnnaBridge 187:0387e8f68319 31
AnnaBridge 168:9672193075cf 32 // This function is called after RAM initialization and before main.
AnnaBridge 168:9672193075cf 33 void mbed_sdk_init()
AnnaBridge 168:9672193075cf 34 {
AnnaBridge 181:57724642e740 35 #if TARGET_STM32F7
AnnaBridge 181:57724642e740 36 // The mbed_sdk_init can be called either during cold boot or during
AnnaBridge 181:57724642e740 37 // application boot after bootloader has been executed.
AnnaBridge 181:57724642e740 38 // In case the bootloader has already enabled the cache,
AnnaBridge 181:57724642e740 39 // is is needed to not enable it again.
AnnaBridge 181:57724642e740 40 if ((SCB->CCR & (uint32_t)SCB_CCR_IC_Msk) == 0) { // If ICache is disabled
AnnaBridge 181:57724642e740 41 SCB_EnableICache();
AnnaBridge 181:57724642e740 42 }
AnnaBridge 181:57724642e740 43 if ((SCB->CCR & (uint32_t)SCB_CCR_DC_Msk) == 0) { // If DCache is disabled
AnnaBridge 181:57724642e740 44 SCB_EnableDCache();
AnnaBridge 181:57724642e740 45 }
AnnaBridge 181:57724642e740 46 #endif /* TARGET_STM32F7 */
AnnaBridge 181:57724642e740 47
AnnaBridge 168:9672193075cf 48 // Update the SystemCoreClock variable.
AnnaBridge 168:9672193075cf 49 SystemCoreClockUpdate();
AnnaBridge 168:9672193075cf 50 HAL_Init();
AnnaBridge 168:9672193075cf 51
AnnaBridge 168:9672193075cf 52 /* Configure the System clock source, PLL Multiplier and Divider factors,
AnnaBridge 168:9672193075cf 53 AHB/APBx prescalers and Flash settings */
AnnaBridge 168:9672193075cf 54 SetSysClock();
AnnaBridge 168:9672193075cf 55 SystemCoreClockUpdate();
AnnaBridge 187:0387e8f68319 56
AnnaBridge 187:0387e8f68319 57 mbed_sdk_inited = 1;
AnnaBridge 168:9672193075cf 58 }