mbed_overrides.c 2.5 KB

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