| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* USER CODE BEGIN Header */
- /**
- ******************************************************************************
- * @file icache.c
- * @brief This file provides code for the configuration
- * of the ICACHE instances.
- ******************************************************************************
- * @attention
- *
- * Copyright (c) 2026 STMicroelectronics.
- * All rights reserved.
- *
- * This software is licensed under terms that can be found in the LICENSE file
- * in the root directory of this software component.
- * If no LICENSE file comes with this software, it is provided AS-IS.
- *
- ******************************************************************************
- */
- /* USER CODE END Header */
- /* Includes ------------------------------------------------------------------*/
- #include "icache.h"
- /* USER CODE BEGIN 0 */
- /* USER CODE END 0 */
- /* ICACHE init function */
- void MX_ICACHE_Init(void)
- {
- /* USER CODE BEGIN ICACHE_Init 0 */
- /* USER CODE END ICACHE_Init 0 */
- /* USER CODE BEGIN ICACHE_Init 1 */
- /* USER CODE END ICACHE_Init 1 */
- /** Enable instruction cache (default 2-ways set associative cache)
- */
- if (HAL_ICACHE_Enable() != HAL_OK)
- {
- Error_Handler();
- }
- /* USER CODE BEGIN ICACHE_Init 2 */
- /* USER CODE END ICACHE_Init 2 */
- }
- /* USER CODE BEGIN 1 */
- /* USER CODE END 1 */
|