292 lines
		
	
	
		
			8.7 KiB
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			292 lines
		
	
	
		
			8.7 KiB
		
	
	
	
		
			C
		
	
	
	
| /**
 | |
|   ******************************************************************************
 | |
|   * @file    FSMC/FSMC_SRAM/Src/main.c
 | |
|   * @author  MCD Application Team
 | |
|   * @brief   This sample code shows how to use STM32F1xx FSMC HAL API to access
 | |
|   *          by read and write operation the SRAM external memory device.
 | |
|   ******************************************************************************
 | |
|   * @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"
 | |
| 
 | |
| /** @addtogroup STM32F1xx_HAL_Examples
 | |
|   * @{
 | |
|   */
 | |
| 
 | |
| /** @addtogroup FSMC_SRAM
 | |
|   * @{
 | |
|   */
 | |
| 
 | |
| /* Private typedef -----------------------------------------------------------*/
 | |
| /* Private define ------------------------------------------------------------*/
 | |
| #define BUFFER_SIZE         ((uint32_t)0x0100)
 | |
| #define WRITE_READ_ADDR     ((uint32_t)0x0800)
 | |
| 
 | |
| /* Private macro -------------------------------------------------------------*/
 | |
| /* Private variables ---------------------------------------------------------*/
 | |
| SRAM_HandleTypeDef hsram;
 | |
| FSMC_NORSRAM_TimingTypeDef SRAM_Timing;
 | |
| 
 | |
| /* Read/Write Buffers */
 | |
| uint16_t aTxBuffer[BUFFER_SIZE];
 | |
| uint16_t aRxBuffer[BUFFER_SIZE];
 | |
| 
 | |
| /* Status variables */
 | |
| __IO uint32_t uwWriteReadStatus = 0;
 | |
| 
 | |
| /* Counter index */
 | |
| uint32_t uwIndex = 0;
 | |
| 
 | |
| /* Private function prototypes -----------------------------------------------*/
 | |
| void SystemClock_Config(void);
 | |
| static void Error_Handler(void);
 | |
| static void Fill_Buffer(uint16_t *pBuffer, uint32_t uwBufferLenght, uint16_t uwOffset);
 | |
| static TestStatus Buffercmp(uint16_t *pBuffer1, uint16_t *pBuffer2, uint16_t BufferLength);
 | |
| 
 | |
| /* Private functions ---------------------------------------------------------*/
 | |
| 
 | |
| /**
 | |
|   * @brief  Main program
 | |
|   * @param  None
 | |
|   * @retval None
 | |
|   */
 | |
| int main(void)
 | |
| {
 | |
|   /* STM32F103xG HAL library initialization:
 | |
|        - Configure the Flash prefetch
 | |
|        - 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 LED1, LED2 and LED3 */
 | |
|   BSP_LED_Init(LED1);
 | |
|   BSP_LED_Init(LED2);
 | |
|   BSP_LED_Init(LED3);
 | |
| 
 | |
|   /* Configure the system clock to 72 MHz */
 | |
|   SystemClock_Config();
 | |
| 
 | |
|   /*##-1- Configure the SRAM device ##########################################*/
 | |
|   /* SRAM device configuration */
 | |
| 
 | |
|   hsram.Instance  = FSMC_NORSRAM_DEVICE;
 | |
|   hsram.Extended  = FSMC_NORSRAM_EXTENDED_DEVICE;
 | |
| 
 | |
|   /* SRAM device configuration */  
 | |
|   SRAM_Timing.AddressSetupTime      = 2;
 | |
|   SRAM_Timing.AddressHoldTime       = 1;
 | |
|   SRAM_Timing.DataSetupTime         = 2;
 | |
|   SRAM_Timing.BusTurnAroundDuration = 1;
 | |
|   SRAM_Timing.CLKDivision           = 2;
 | |
|   SRAM_Timing.DataLatency           = 2;
 | |
|   SRAM_Timing.AccessMode            = FSMC_ACCESS_MODE_A;
 | |
|   
 | |
|   hsram.Init.NSBank                 = FSMC_NORSRAM_BANK3;
 | |
|   hsram.Init.DataAddressMux         = FSMC_DATA_ADDRESS_MUX_DISABLE;
 | |
|   hsram.Init.MemoryType             = FSMC_MEMORY_TYPE_SRAM;
 | |
|   hsram.Init.MemoryDataWidth        = SRAM_MEMORY_WIDTH;
 | |
|   hsram.Init.BurstAccessMode        = FSMC_BURST_ACCESS_MODE_DISABLE;
 | |
|   hsram.Init.WaitSignalPolarity     = FSMC_WAIT_SIGNAL_POLARITY_LOW;
 | |
|   hsram.Init.WrapMode               = FSMC_WRAP_MODE_DISABLE;
 | |
|   hsram.Init.WaitSignalActive       = FSMC_WAIT_TIMING_BEFORE_WS;
 | |
|   hsram.Init.WriteOperation         = FSMC_WRITE_OPERATION_ENABLE;
 | |
|   hsram.Init.WaitSignal             = FSMC_WAIT_SIGNAL_DISABLE;
 | |
|   hsram.Init.ExtendedMode           = FSMC_EXTENDED_MODE_DISABLE;
 | |
|   hsram.Init.AsynchronousWait       = FSMC_ASYNCHRONOUS_WAIT_DISABLE;
 | |
|   hsram.Init.WriteBurst             = FSMC_WRITE_BURST_DISABLE;
 | |
| 
 | |
|   /* Initialize the SRAM controller */
 | |
|   if(HAL_SRAM_Init(&hsram, &SRAM_Timing, &SRAM_Timing) != HAL_OK)
 | |
|   {
 | |
|     /* Initialization Error */
 | |
|     Error_Handler();
 | |
|   }
 | |
| 
 | |
|   /*##-2- SRAM memory read/write access ######################################*/
 | |
|   /* Fill the buffer to write */
 | |
|   Fill_Buffer(aTxBuffer, BUFFER_SIZE, 0xC20F);
 | |
| 
 | |
|   /* Write data to the SRAM memory */
 | |
|   for(uwIndex = 0; uwIndex < BUFFER_SIZE; uwIndex++)
 | |
|   {
 | |
|     *(__IO uint16_t *)(SRAM_BANK_ADDR + WRITE_READ_ADDR + 2 * uwIndex) = aTxBuffer[uwIndex];
 | |
|   }
 | |
| 
 | |
|   /* Read back data from the SRAM memory */
 | |
|   for(uwIndex = 0; uwIndex < BUFFER_SIZE; uwIndex++)
 | |
|   {
 | |
|     aRxBuffer[uwIndex] = *(__IO uint16_t *)(SRAM_BANK_ADDR + WRITE_READ_ADDR + 2 * uwIndex);
 | |
|   }
 | |
| 
 | |
|   /*##-3- Checking data integrity ############################################*/
 | |
|   uwWriteReadStatus = Buffercmp(aTxBuffer, aRxBuffer, BUFFER_SIZE);
 | |
| 
 | |
|   if(uwWriteReadStatus != PASSED)
 | |
|   {
 | |
|     /* KO */
 | |
|     /* Turn on LED2 */
 | |
|     BSP_LED_On(LED2);
 | |
|   }
 | |
|   else
 | |
|   {
 | |
|     /* OK */
 | |
|     /* Turn on LED1 */
 | |
|     BSP_LED_On(LED1);
 | |
|   }
 | |
| 
 | |
|   /* Infinite loop */
 | |
|   while (1)
 | |
|   {
 | |
|   }
 | |
| }
 | |
| 
 | |
| /**
 | |
|   * @brief  System Clock Configuration
 | |
|   *         The system Clock is configured as follow : 
 | |
|   *            System Clock source            = PLL (HSE)
 | |
|   *            SYSCLK(Hz)                     = 72000000
 | |
|   *            HCLK(Hz)                       = 72000000
 | |
|   *            AHB Prescaler                  = 1
 | |
|   *            APB1 Prescaler                 = 2
 | |
|   *            APB2 Prescaler                 = 1
 | |
|   *            HSE Frequency(Hz)              = 8000000
 | |
|   *            HSE PREDIV1                    = 1
 | |
|   *            PLLMUL                         = 9
 | |
|   *            Flash Latency(WS)              = 2
 | |
|   * @param  None
 | |
|   * @retval None
 | |
|   */
 | |
| void SystemClock_Config(void)
 | |
| {
 | |
|   RCC_ClkInitTypeDef clkinitstruct = {0};
 | |
|   RCC_OscInitTypeDef oscinitstruct = {0};
 | |
|   
 | |
|   /* Enable HSE Oscillator and activate PLL with HSE as source */
 | |
|   oscinitstruct.OscillatorType  = RCC_OSCILLATORTYPE_HSE;
 | |
|   oscinitstruct.HSEState        = RCC_HSE_ON;
 | |
|   oscinitstruct.HSEPredivValue  = RCC_HSE_PREDIV_DIV1;
 | |
|   oscinitstruct.PLL.PLLState    = RCC_PLL_ON;
 | |
|   oscinitstruct.PLL.PLLSource   = RCC_PLLSOURCE_HSE;
 | |
|   oscinitstruct.PLL.PLLMUL      = RCC_PLL_MUL9;
 | |
|   if (HAL_RCC_OscConfig(&oscinitstruct)!= HAL_OK)
 | |
|   {
 | |
|     /* Initialization Error */
 | |
|     while(1);
 | |
|   }
 | |
| 
 | |
|   /* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2 
 | |
|      clocks dividers */
 | |
|   clkinitstruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2);
 | |
|   clkinitstruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
 | |
|   clkinitstruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
 | |
|   clkinitstruct.APB2CLKDivider = RCC_HCLK_DIV1;
 | |
|   clkinitstruct.APB1CLKDivider = RCC_HCLK_DIV2;  
 | |
|   if (HAL_RCC_ClockConfig(&clkinitstruct, FLASH_LATENCY_2)!= HAL_OK)
 | |
|   {
 | |
|     /* Initialization Error */
 | |
|     while(1);
 | |
|   }
 | |
| }
 | |
| 
 | |
| 
 | |
| /**
 | |
|   * @brief  This function is executed in case of error occurrence.
 | |
|   * @param  None
 | |
|   * @retval None
 | |
|   */
 | |
| static void Error_Handler(void)
 | |
| {
 | |
|   /* Turn LED3 on */
 | |
|   BSP_LED_On(LED3);
 | |
|   while (1)
 | |
|   {
 | |
|   }
 | |
| }
 | |
| 
 | |
| /**
 | |
|   * @brief  Fills buffer with user predefined data.
 | |
|   * @param  pBuffer: pointer on the buffer to fill
 | |
|   * @param  uwBufferLenght: size of the buffer to fill
 | |
|   * @param  uwOffset: first value to fill on the buffer
 | |
|   * @retval None
 | |
|   */
 | |
| static void Fill_Buffer(uint16_t *pBuffer, uint32_t uwBufferLenght, uint16_t uwOffset)
 | |
| {
 | |
|   uint16_t tmpIndex = 0;
 | |
| 
 | |
|   /* Put in global buffer different values */
 | |
|   for (tmpIndex = 0; tmpIndex < uwBufferLenght; tmpIndex++)
 | |
|   {
 | |
|     pBuffer[tmpIndex] = tmpIndex + uwOffset;
 | |
|   }
 | |
| }
 | |
| 
 | |
| /**
 | |
|   * @brief  Compares two buffers.
 | |
|   * @param  pBuffer1, pBuffer2: buffers to be compared.
 | |
|   * @param  BufferLength: buffer's length
 | |
|   * @retval PASSED: pBuffer identical to pBuffer1
 | |
|   *         FAILED: pBuffer differs from pBuffer1
 | |
|   */
 | |
| static TestStatus Buffercmp(uint16_t *pBuffer1, uint16_t *pBuffer2, uint16_t BufferLength)
 | |
| {
 | |
|   while (BufferLength--)
 | |
|   {
 | |
|     if (*pBuffer1 != *pBuffer2)
 | |
|     {
 | |
|       return FAILED;
 | |
|     }
 | |
| 
 | |
|     pBuffer1++;
 | |
|     pBuffer2++;
 | |
|   }
 | |
| 
 | |
|   return PASSED;
 | |
| }
 | |
| 
 | |
| #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
 | |
| 
 | |
| /**
 | |
|   * @}
 | |
|   */
 | |
| 
 | |
| /**
 | |
|   * @}
 | |
|   */
 |