| // Copyright 2021 The Pigweed Authors |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| // use this file except in compliance with the License. You may obtain a copy of |
| // the License at |
| // |
| // https://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| // License for the specific language governing permissions and limitations under |
| // the License. |
| |
| #include "pw_sys_io_stm32cube/init.h" |
| |
| #include "stm32cube/init.h" |
| #include "stm32cube/stm32cube.h" |
| |
| static void loop(void) { |
| while (1) { |
| } |
| } |
| |
| // Initializes clock to its max, 180Mhz |
| static void ClockInit(void) { |
| RCC_OscInitTypeDef RCC_OscInitStruct = {}; |
| RCC_ClkInitTypeDef RCC_ClkInitStruct = {}; |
| |
| __HAL_RCC_PWR_CLK_ENABLE(); |
| __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1); |
| |
| RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE; |
| RCC_OscInitStruct.HSEState = RCC_HSE_ON; |
| RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; |
| RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE; |
| RCC_OscInitStruct.PLL.PLLM = 4; |
| RCC_OscInitStruct.PLL.PLLN = 180; |
| RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2; |
| RCC_OscInitStruct.PLL.PLLQ = 8; |
| if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) { |
| loop(); |
| } |
| |
| // OverDrive required for operation > 168Mhz |
| if (HAL_PWREx_EnableOverDrive() != HAL_OK) { |
| loop(); |
| } |
| |
| RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_SYSCLK | |
| RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2; |
| RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; |
| RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; |
| RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4; |
| RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2; |
| |
| if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_5) != HAL_OK) { |
| loop(); |
| } |
| } |
| |
| void pw_stm32cube_Init(void) { |
| ClockInit(); |
| pw_sys_io_Init(); |
| } |