70 lines
2.1 KiB
C
70 lines
2.1 KiB
C
|
#include "../../../gfx.h"
|
||
|
#if GFX_COMPAT_V2 && GFX_COMPAT_OLDCOLORS
|
||
|
#undef Red
|
||
|
#undef Green
|
||
|
#undef Blue
|
||
|
#endif
|
||
|
#include "stm32f7xx_hal.h"
|
||
|
|
||
|
#if GFX_USE_OS_CHIBIOS
|
||
|
#define HAL_GPIO_Init(port, ptr) palSetGroupMode(port, (ptr)->Pin, 0, (ptr)->Mode|((ptr)->Speed<<3)|((ptr)->Pull<<5)|((ptr)->Alternate<<7))
|
||
|
#else
|
||
|
gTicks gfxSystemTicks(void)
|
||
|
{
|
||
|
return HAL_GetTick();
|
||
|
}
|
||
|
|
||
|
gTicks gfxMillisecondsToTicks(gDelay ms)
|
||
|
{
|
||
|
return ms;
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
void SystemClock_Config(void)
|
||
|
{
|
||
|
RCC_ClkInitTypeDef RCC_ClkInitStruct;
|
||
|
RCC_OscInitTypeDef RCC_OscInitStruct;
|
||
|
|
||
|
/* Enable HSE Oscillator and activate PLL with HSE as source */
|
||
|
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
|
||
|
RCC_OscInitStruct.HSEState = RCC_HSE_ON;
|
||
|
RCC_OscInitStruct.HSIState = RCC_HSI_OFF;
|
||
|
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
|
||
|
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
|
||
|
RCC_OscInitStruct.PLL.PLLM = 25;
|
||
|
RCC_OscInitStruct.PLL.PLLN = 432;
|
||
|
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
|
||
|
RCC_OscInitStruct.PLL.PLLQ = 9;
|
||
|
HAL_RCC_OscConfig(&RCC_OscInitStruct);
|
||
|
|
||
|
/* Activate the OverDrive to reach the 216 MHz Frequency */
|
||
|
HAL_PWREx_EnableOverDrive();
|
||
|
|
||
|
/* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2 clocks dividers */
|
||
|
RCC_ClkInitStruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | 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;
|
||
|
HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_7);
|
||
|
}
|
||
|
|
||
|
void Raw32OSInit(void)
|
||
|
{
|
||
|
/* Enable the CPU Cache's */
|
||
|
SCB_EnableICache(); // Enable I-Cache
|
||
|
SCB_EnableDCache(); // Enable D-Cache
|
||
|
|
||
|
|
||
|
/* STM32F7xx HAL library initialization:
|
||
|
- Configure the Flash ART accelerator on ITCM interface
|
||
|
- Configure the Systick to generate an interrupt each 1 msec
|
||
|
- Set NVIC Group Priority to 4
|
||
|
- Global MSP (MCU Support Package) initialization
|
||
|
*/
|
||
|
HAL_Init();
|
||
|
|
||
|
/* Configure the system clock to 216 MHz */
|
||
|
SystemClock_Config();
|
||
|
}
|