358 lines
11 KiB
C
358 lines
11 KiB
C
/**
|
|
******************************************************************************
|
|
* @file LibJPEG/LibJPEG_Decoding/Src/main.c
|
|
* @author MCD Application Team
|
|
* @brief This sample code shows how to use FatFs with uSD card drive.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2016 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.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "main.h"
|
|
|
|
/* Private typedef -----------------------------------------------------------*/
|
|
/* Private define ------------------------------------------------------------*/
|
|
/* Private macro -------------------------------------------------------------*/
|
|
/* Private variables ---------------------------------------------------------*/
|
|
FATFS SDFatFs; /* File system object for SD card logical drive */
|
|
FIL MyFile; /* File object */
|
|
char SDPath[4]; /* SD card logical drive path */
|
|
RGB_typedef *RGB_matrix;
|
|
uint8_t _aucLine[2048];
|
|
uint32_t offset = 0;
|
|
uint32_t line_counter = 239;
|
|
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
static void MPU_Config(void);
|
|
static void SystemClock_Config(void);
|
|
static void LCD_Config(void);
|
|
static uint8_t Jpeg_CallbackFunction(uint8_t* Row, uint32_t DataLength);
|
|
static void CPU_CACHE_Enable(void);
|
|
|
|
/* Private functions ---------------------------------------------------------*/
|
|
|
|
/**
|
|
* @brief Main program
|
|
* @param None
|
|
* @retval None
|
|
*/
|
|
int main(void)
|
|
{
|
|
/* Configure the MPU attributes */
|
|
MPU_Config();
|
|
|
|
/* Enable the CPU Cache */
|
|
CPU_CACHE_Enable();
|
|
|
|
/* STM32F7xx HAL library initialization:
|
|
- Configure the Flash ART accelerator on ITCM interface
|
|
- Systick timer is configured by default as source of time base, but user
|
|
can eventually implement his proper time base source (a general purpose
|
|
timer for example or other time source), keeping in mind that Time base
|
|
duration should be kept 1ms since PPP_TIMEOUT_VALUEs are defined and
|
|
handled in milliseconds basis.
|
|
- Set NVIC Group Priority to 4
|
|
- Low Level Initialization
|
|
*/
|
|
HAL_Init();
|
|
|
|
/* Configure the system clock to 200 MHz */
|
|
SystemClock_Config();
|
|
|
|
/*##-1- LCD Configuration ##################################################*/
|
|
LCD_Config();
|
|
|
|
/*##-2- Link the micro SD disk I/O driver ##################################*/
|
|
if(FATFS_LinkDriver(&SD_Driver, SDPath) == 0)
|
|
{
|
|
/*##-3- Register the file system object to the FatFs module ##############*/
|
|
if(f_mount(&SDFatFs, (TCHAR const*)SDPath, 0) == FR_OK)
|
|
{
|
|
/*##-4- Open the JPG image with read access ############################*/
|
|
if(f_open(&MyFile, "image.jpg", FA_READ) == FR_OK)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|
|
/*##-5- Decode the jpg image file ##########################################*/
|
|
jpeg_decode(&MyFile, IMAGE_WIDTH, _aucLine, Jpeg_CallbackFunction);
|
|
|
|
/*##-4- Close the JPG image ################################################*/
|
|
f_close(&MyFile);
|
|
|
|
/* Infinite loop */
|
|
while (1)
|
|
{
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @brief LCD Configuration.
|
|
* @Param None
|
|
* @retval None
|
|
*/
|
|
static void LCD_Config(void)
|
|
{
|
|
/* Initialize the LCD */
|
|
BSP_LCD_Init();
|
|
|
|
/* Background Layer Initialization */
|
|
BSP_LCD_LayerDefaultInit(0, LCD_FRAME_BUFFER);
|
|
|
|
/* Set Foreground Layer */
|
|
BSP_LCD_SelectLayer(0);
|
|
|
|
/* Enable the LCD */
|
|
BSP_LCD_DisplayOn();
|
|
|
|
/* Set Display window */
|
|
BSP_LCD_SetLayerWindow(0, 0, 0, IMAGE_WIDTH, IMAGE_HEIGHT);
|
|
|
|
/* Clear the LCD Background layer */
|
|
BSP_LCD_Clear(LCD_COLOR_WHITE);
|
|
}
|
|
|
|
/**
|
|
* @brief Copy decompressed data to display buffer.
|
|
* @param Row: Output row buffer
|
|
* @param DataLength: Row width in output buffer
|
|
* @retval None
|
|
*/
|
|
static uint8_t Jpeg_CallbackFunction(uint8_t* Row, uint32_t DataLength)
|
|
{
|
|
#ifdef USE_DMA2D
|
|
static DMA2D_HandleTypeDef hdma2d_eval;
|
|
|
|
offset = (LCD_FRAME_BUFFER + (IMAGE_WIDTH * (IMAGE_HEIGHT - line_counter - 1) * 4));
|
|
|
|
/* Configure the DMA2D Mode, Color Mode and output offset */
|
|
hdma2d_eval.Init.Mode = DMA2D_M2M_PFC;
|
|
hdma2d_eval.Init.ColorMode = DMA2D_OUTPUT_ARGB8888;
|
|
hdma2d_eval.Init.OutputOffset = 0;
|
|
|
|
/* Foreground Configuration */
|
|
hdma2d_eval.LayerCfg[1].AlphaMode = DMA2D_NO_MODIF_ALPHA;
|
|
hdma2d_eval.LayerCfg[1].InputAlpha = 0xFF;
|
|
hdma2d_eval.LayerCfg[1].InputColorMode = DMA2D_INPUT_RGB888;
|
|
hdma2d_eval.LayerCfg[1].InputOffset = 0;
|
|
|
|
hdma2d_eval.Instance = DMA2D;
|
|
|
|
/* DMA2D Initialization */
|
|
if(HAL_DMA2D_Init(&hdma2d_eval) == HAL_OK)
|
|
{
|
|
if(HAL_DMA2D_ConfigLayer(&hdma2d_eval, 1) == HAL_OK)
|
|
{
|
|
if (HAL_DMA2D_Start(&hdma2d_eval, (uint32_t)Row, (uint32_t)offset, IMAGE_WIDTH, 1) == HAL_OK)
|
|
{
|
|
/* Polling For DMA transfer */
|
|
HAL_DMA2D_PollForTransfer(&hdma2d_eval, 10);
|
|
}
|
|
}
|
|
}
|
|
#else /* DMA2D not used */
|
|
RGB_matrix = (RGB_typedef*)Row;
|
|
uint32_t ARGB32Buffer[IMAGE_WIDTH];
|
|
uint32_t counter = 0;
|
|
|
|
for(counter = 0; counter < IMAGE_WIDTH; counter++)
|
|
{
|
|
ARGB32Buffer[counter] = (uint32_t)
|
|
(
|
|
((RGB_matrix[counter].B << 16)|
|
|
(RGB_matrix[counter].G << 8)|
|
|
(RGB_matrix[counter].R) | 0xFF000000)
|
|
);
|
|
|
|
*(__IO uint32_t *)(LCD_FRAME_BUFFER + (counter*4) + (IMAGE_WIDTH * (IMAGE_HEIGHT - line_counter - 1) * 4)) = ARGB32Buffer[counter];
|
|
}
|
|
#endif
|
|
|
|
#ifdef SWAP_RB
|
|
uint32_t pixel = 0, width_counter, result = 0, result1 = 0;
|
|
|
|
for(width_counter = 0; width_counter < IMAGE_WIDTH; width_counter++)
|
|
{
|
|
pixel = *(__IO uint32_t *)(LCD_FRAME_BUFFER + (width_counter*4) + (IMAGE_WIDTH * (IMAGE_HEIGHT - line_counter - 1) * 4));
|
|
result1 = (((pixel & 0x00FF0000) >> 16) | ((pixel & 0x000000FF) << 16));
|
|
pixel = pixel & 0xFF00FF00;
|
|
result = (result1 | pixel);
|
|
*(__IO uint32_t *)(LCD_FRAME_BUFFER + (width_counter*4) + (IMAGE_WIDTH * (IMAGE_HEIGHT - line_counter - 1) * 4)) = result;
|
|
|
|
}
|
|
#endif
|
|
|
|
line_counter--;
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* @brief System Clock Configuration
|
|
* The system Clock is configured as follow :
|
|
* System Clock source = PLL (HSE)
|
|
* SYSCLK(Hz) = 200000000
|
|
* HCLK(Hz) = 200000000
|
|
* AHB Prescaler = 1
|
|
* APB1 Prescaler = 4
|
|
* APB2 Prescaler = 2
|
|
* HSE Frequency(Hz) = 25000000
|
|
* PLL_M = 25
|
|
* PLL_N = 432
|
|
* PLL_P = 2
|
|
* PLL_Q = 8
|
|
* VDD(V) = 3.3
|
|
* Main regulator output voltage = Scale1 mode
|
|
* Flash Latency(WS) = 7
|
|
* @param None
|
|
* @retval None
|
|
*/
|
|
static void SystemClock_Config(void)
|
|
{
|
|
RCC_ClkInitTypeDef RCC_ClkInitStruct;
|
|
RCC_OscInitTypeDef RCC_OscInitStruct;
|
|
HAL_StatusTypeDef ret = HAL_OK;
|
|
|
|
/* Enable HSE Oscillator and activate PLL with HSE as source */
|
|
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 = 25;
|
|
RCC_OscInitStruct.PLL.PLLN = 400;
|
|
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
|
|
RCC_OscInitStruct.PLL.PLLQ = 8;
|
|
|
|
ret = HAL_RCC_OscConfig(&RCC_OscInitStruct);
|
|
if(ret != HAL_OK)
|
|
{
|
|
while(1) { ; }
|
|
}
|
|
|
|
/* Activate the OverDrive to reach the 200 MHz Frequency */
|
|
ret = HAL_PWREx_EnableOverDrive();
|
|
if(ret != HAL_OK)
|
|
{
|
|
while(1) { ; }
|
|
}
|
|
|
|
/* 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;
|
|
|
|
ret = HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_6);
|
|
if(ret != HAL_OK)
|
|
{
|
|
while(1) { ; }
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @brief Configure the MPU attributes
|
|
* @param None
|
|
* @retval None
|
|
*/
|
|
static void MPU_Config(void)
|
|
{
|
|
MPU_Region_InitTypeDef MPU_InitStruct;
|
|
|
|
/* Disable the MPU */
|
|
HAL_MPU_Disable();
|
|
|
|
/* Configure the MPU as Strongly ordered for not defined regions */
|
|
MPU_InitStruct.Enable = MPU_REGION_ENABLE;
|
|
MPU_InitStruct.BaseAddress = 0x00;
|
|
MPU_InitStruct.Size = MPU_REGION_SIZE_4GB;
|
|
MPU_InitStruct.AccessPermission = MPU_REGION_NO_ACCESS;
|
|
MPU_InitStruct.IsBufferable = MPU_ACCESS_NOT_BUFFERABLE;
|
|
MPU_InitStruct.IsCacheable = MPU_ACCESS_NOT_CACHEABLE;
|
|
MPU_InitStruct.IsShareable = MPU_ACCESS_SHAREABLE;
|
|
MPU_InitStruct.Number = MPU_REGION_NUMBER0;
|
|
MPU_InitStruct.TypeExtField = MPU_TEX_LEVEL0;
|
|
MPU_InitStruct.SubRegionDisable = 0x87;
|
|
MPU_InitStruct.DisableExec = MPU_INSTRUCTION_ACCESS_DISABLE;
|
|
|
|
HAL_MPU_ConfigRegion(&MPU_InitStruct);
|
|
|
|
/* Configure the MPU attributes as WT for SDRAM */
|
|
MPU_InitStruct.Enable = MPU_REGION_ENABLE;
|
|
MPU_InitStruct.BaseAddress = 0xC0000000;
|
|
MPU_InitStruct.Size = MPU_REGION_SIZE_32MB;
|
|
MPU_InitStruct.AccessPermission = MPU_REGION_FULL_ACCESS;
|
|
MPU_InitStruct.IsBufferable = MPU_ACCESS_NOT_BUFFERABLE;
|
|
MPU_InitStruct.IsCacheable = MPU_ACCESS_CACHEABLE;
|
|
MPU_InitStruct.IsShareable = MPU_ACCESS_NOT_SHAREABLE;
|
|
MPU_InitStruct.Number = MPU_REGION_NUMBER1;
|
|
MPU_InitStruct.TypeExtField = MPU_TEX_LEVEL0;
|
|
MPU_InitStruct.SubRegionDisable = 0x00;
|
|
MPU_InitStruct.DisableExec = MPU_INSTRUCTION_ACCESS_ENABLE;
|
|
|
|
HAL_MPU_ConfigRegion(&MPU_InitStruct);
|
|
|
|
/* Configure the MPU attributes FMC control registers */
|
|
MPU_InitStruct.Enable = MPU_REGION_ENABLE;
|
|
MPU_InitStruct.BaseAddress = 0xA0000000;
|
|
MPU_InitStruct.Size = MPU_REGION_SIZE_8KB;
|
|
MPU_InitStruct.AccessPermission = MPU_REGION_FULL_ACCESS;
|
|
MPU_InitStruct.IsBufferable = MPU_ACCESS_BUFFERABLE;
|
|
MPU_InitStruct.IsCacheable = MPU_ACCESS_NOT_CACHEABLE;
|
|
MPU_InitStruct.IsShareable = MPU_ACCESS_SHAREABLE;
|
|
MPU_InitStruct.Number = MPU_REGION_NUMBER2;
|
|
MPU_InitStruct.TypeExtField = MPU_TEX_LEVEL0;
|
|
MPU_InitStruct.SubRegionDisable = 0x0;
|
|
MPU_InitStruct.DisableExec = MPU_INSTRUCTION_ACCESS_DISABLE;
|
|
|
|
HAL_MPU_ConfigRegion(&MPU_InitStruct);
|
|
|
|
/* Enable the MPU */
|
|
HAL_MPU_Enable(MPU_PRIVILEGED_DEFAULT);
|
|
}
|
|
|
|
#ifdef USE_FULL_ASSERT
|
|
|
|
/**
|
|
* @brief Reports the name of the source file and the source line number
|
|
* where the assert_param error has occurred.
|
|
* @param file: pointer to the source file name
|
|
* @param line: assert_param error line source number
|
|
* @retval None
|
|
*/
|
|
void assert_failed(uint8_t* file, uint32_t line)
|
|
{
|
|
/* User can add his own implementation to report the file name and line number,
|
|
ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
|
|
|
|
/* Infinite loop */
|
|
while (1)
|
|
{
|
|
}
|
|
}
|
|
#endif /* USE_FULL_ASSERT */
|
|
|
|
/**
|
|
* @brief CPU L1-Cache enable.
|
|
* @param None
|
|
* @retval None
|
|
*/
|
|
static void CPU_CACHE_Enable(void)
|
|
{
|
|
/* Enable I-Cache */
|
|
SCB_EnableICache();
|
|
|
|
/* Enable D-Cache */
|
|
SCB_EnableDCache();
|
|
}
|
|
|