STM32通过FSMC读写CPLD

来源:本站
导读:目前正在解读《STM32通过FSMC读写CPLD》的相关信息,《STM32通过FSMC读写CPLD》是由用户自行发布的知识型内容!下面请观看由(电工技术网 - www.9ddd.net)用户发布《STM32通过FSMC读写CPLD》的详细说明。
简介:STM32通过FSMC读写CPLD

STM32通过FSMC读写CPLD的程序,CPLD挂在STM32的地址线和数据线上,将CPLD看做片外RAM的方式来进行读写,在我做的板子上CPLD挂在第四个区,因此基地址是0x6c000000,通过FSMC来进行读写,程序较为简单,具体的地方在函数中都有注释,仅供参考。

view plaincopy to clipboardprint?/**************************(C)COPYRIGHTemouse2011***************************名称:CPLD.c功能:配置fsmc,CPLD读写函数作者:emouse时间:2011.1.2版本:1.0注意:一定要使能RCC_AHBPeriphClockCmd(RCC_AHBPeriph_FSMC,ENABLE);*******************************************************************************/#include"STM32Lib//stm32f10x.h"#include"hal.h"//使用第一块存储区,使用第四块,定义基地址#defineBank1_SRAM4_ADDR((uint32_t)0x6c000000)/*******************************************************************************名称:CPLD_Init(void)功能:配置FSMC寄存器参数:无时间:2011.1.15版本:1.0注意:实际CPLD只用了8根地址线和8根数据线按照模式A-SRAM/PSRAM(CRAM)OE翻转模式配置读写时序时序图在STM32技术手册P332可以按照实际连接配置地址线数据线*******************************************************************************/voidCPLD_Init(void){FSMC_NORSRAMInitTypeDefFSMC_NORSRAMInitStructure;FSMC_NORSRAMTimingInitTypeDefp;GPIO_InitTypeDefGPIO_InitStructure;RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOD|RCC_APB2Periph_GPIOG|RCC_APB2Periph_GPIOE|RCC_APB2Periph_GPIOF,ENABLE);/*--GPIOConfiguration------------------------------------------------------*//*!<SRAMDatalinesconfiguration*/GPIO_InitStructure.GPIO_Pin=GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_8|GPIO_Pin_9|GPIO_Pin_10|GPIO_Pin_14|GPIO_Pin_15;GPIO_InitStructure.GPIO_Mode=GPIO_Mode_AF_PP;GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;GPIO_Init(GPIOD,&GPIO_InitStructure);GPIO_InitStructure.GPIO_Pin=GPIO_Pin_7|GPIO_Pin_8|GPIO_Pin_9|GPIO_Pin_10|GPIO_Pin_11|GPIO_Pin_12|GPIO_Pin_13|GPIO_Pin_14|GPIO_Pin_15;GPIO_Init(GPIOE,&GPIO_InitStructure);/*!<SRAMAddresslinesconfiguration*/GPIO_InitStructure.GPIO_Pin=GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_2|GPIO_Pin_3|GPIO_Pin_4|GPIO_Pin_5|GPIO_Pin_12|GPIO_Pin_13|GPIO_Pin_14|GPIO_Pin_15;GPIO_Init(GPIOF,&GPIO_InitStructure);GPIO_InitStructure.GPIO_Pin=GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_2|GPIO_Pin_3|GPIO_Pin_4|GPIO_Pin_5;GPIO_Init(GPIOG,&GPIO_InitStructure);GPIO_InitStructure.GPIO_Pin=GPIO_Pin_11|GPIO_Pin_12|GPIO_Pin_13;GPIO_Init(GPIOD,&GPIO_InitStructure);/*!<NOEandNWEconfiguration*/GPIO_InitStructure.GPIO_Pin=GPIO_Pin_4|GPIO_Pin_5;GPIO_Init(GPIOD,&GPIO_InitStructure);/*!<NE4configuration*/GPIO_InitStructure.GPIO_Pin=GPIO_Pin_12;GPIO_Init(GPIOG,&GPIO_InitStructure);/*!<NBL0,NBL1configuration有些芯片上需要进行高低字节使能,对于CPLD不需要*///GPIO_InitStructure.GPIO_Pin=GPIO_Pin_0|GPIO_Pin_1;//GPIO_Init(GPIOE,&GPIO_InitStructure);/*--FSMCConfiguration------------------------------------------------------*/p.FSMC_AddressSetupTime=0;p.FSMC_AddressHoldTime=0;p.FSMC_DataSetupTime=1;p.FSMC_BusTurnAroundDuration=0;p.FSMC_CLKDivision=0;p.FSMC_DataLatency=0;p.FSMC_AccessMode=FSMC_AccessMode_A;FSMC_NORSRAMInitStructure.FSMC_Bank=FSMC_Bank1_NORSRAM4;FSMC_NORSRAMInitStructure.FSMC_DataAddressMux=FSMC_DataAddressMux_Disable;FSMC_NORSRAMInitStructure.FSMC_MemoryType=FSMC_MemoryType_SRAM;FSMC_NORSRAMInitStructure.FSMC_MemoryDataWidth=FSMC_MemoryDataWidth_8b;FSMC_NORSRAMInitStructure.FSMC_BurstAccessMode=FSMC_BurstAccessMode_Disable;FSMC_NORSRAMInitStructure.FSMC_AsynchronousWait=FSMC_AsynchronousWait_Disable;FSMC_NORSRAMInitStructure.FSMC_WaitSignalPolarity=FSMC_WaitSignalPolarity_Low;FSMC_NORSRAMInitStructure.FSMC_WrapMode=FSMC_WrapMode_Disable;FSMC_NORSRAMInitStructure.FSMC_WaitSignalActive=FSMC_WaitSignalActive_BeforeWaitState;FSMC_NORSRAMInitStructure.FSMC_WriteOperation=FSMC_WriteOperation_Enable;FSMC_NORSRAMInitStructure.FSMC_WaitSignal=FSMC_WaitSignal_Disable;FSMC_NORSRAMInitStructure.FSMC_ExtendedMode=FSMC_ExtendedMode_Disable;FSMC_NORSRAMInitStructure.FSMC_WriteBurst=FSMC_WriteBurst_Disable;FSMC_NORSRAMInitStructure.FSMC_ReadWriteTimingStruct=&p;FSMC_NORSRAMInitStructure.FSMC_WriteTimingStruct=&p;FSMC_NORSRAMInit(&FSMC_NORSRAMInitStructure);/*!<EnableFSMCBank1_SRAMBank*/FSMC_NORSRAMCmd(FSMC_Bank1_NORSRAM4,ENABLE);}/*******************************************************************************名称:CPLD_Write功能:CPLD写时序参数:uint8_tpBuffer-写入的数据uint32_tWriteAddr-写入的地址时间:2011.1.15版本:1.0注意:在硬件设计中使用了八根地址线和数据线,因此以八位的数据写入*******************************************************************************/voidCPLD_Write(uint8_tpBuffer,uint32_tWriteAddr){*(uint32_t*)(Bank1_SRAM4_ADDR+WriteAddr)=pBuffer;}/*******************************************************************************名称:uint8_tSRAM_Read(uint32_tReadAddr)功能:CPLD读参数:uint32_tReadAddr需要读取的地址,返回读取的值时间:2011.1.15版本:1.0注意:在硬件设计中使用了八根地址线和数据线,因此以八位的数据写入*******************************************************************************/uint8_tSRAM_Read(uint32_tReadAddr){uint8_tpBuffer;pBuffer=*(__IOuint32_t*)(Bank1_SRAM4_ADDR+ReadAddr);returnpBuffer;}

提醒:《STM32通过FSMC读写CPLD》最后刷新时间 2024-03-14 01:13:41,本站为公益型个人网站,仅供个人学习和记录信息,不进行任何商业性质的盈利。如果内容、图片资源失效或内容涉及侵权,请反馈至,我们会及时处理。本站只保证内容的可读性,无法保证真实性,《STM32通过FSMC读写CPLD》该内容的真实性请自行鉴别。