你的浏览器版本过低,可能导致网站不能正常访问!
为了你能正常使用网站功能,请使用这些浏览器。

基于STM32F103ZET6使用FSMC驱动TFT的学习 (三)

[复制链接]
EEFOCUS小白 发布时间:2015-4-1 10:11
a、首先是时间参数的配置,我们在初始化的时候设置的bank4,所以这里对应的也是bank4,本函数主要使用了两种类型的结构体对FSMC进行配置,第一种
: }1 ~6 l' c* [ 为 FSMC_NORSRAMInitTypeDef类型的结构体主要用于NOR FLASH的模式配置,包括存储器类型、数据宽度等。另一种的类型为FSMC_NORSRAMTimingInitTypeDef

. |$ p" u3 I/ x9 ^
首先是这个结构体FSMC_NORSRAMTimingInitTypeDef,找到他的定义:
成员变量有
; U) M9 P0 n- c2 L! M4 {
  • uint32_t  FSMC_AccessMode   
  • uint32_t  FSMC_AddressHoldTime   
  • uint32_t  FSMC_AddressSetupTime   
  • uint32_t  FSMC_BusTurnAroundDuration   
  • uint32_t  FSMC_CLKDivision   
  • uint32_t  FSMC_DataLatency   
  • uint32_t  FSMC_DataSetupTime   0 X( S) \( E( N+ s. X: k! i* k
uint32_t  FSMC_AccessMode uint32_t  FSMC_AddressHoldTime uint32_t  FSMC_AddressSetupTime uint32_t  FSMC_BusTurnAroundDuration uint32_t  FSMC_CLKDivision uint32_t  FSMC_DataLatency uint32_t  FSMC_DataSetupTime

- r' }7 O' \6 f- B0 e' I) l6 Z8 }) ?/ V% p1 s1 T
FSMC_AccessMode:Specifies the asynchronous access mode,用于同步模式,它的取值有以下几种,参考手册上面显示:模式A —— SRAM/PSRAM(CRAM) OE翻转,所以这里我们选择的是模式A; g( h5 g* e: u1 m3 N9 T
#define
FSMC_AccessMode_A   ((uint32_t)0x00000000)
#define
FSMC_AccessMode_B   ((uint32_t)0x10000000)
#define
FSMC_AccessMode_C   ((uint32_t)0x20000000)
#define
FSMC_AccessMode_D   ((uint32_t)0x30000000
+ `9 C. c: j3 r1 ~+ j5 u% x

$ w5 R3 s( k( {' ^$ y1 j/ c- g$ c; p
FSMC_AddressHoldTime:Defines the number of HCLK cycles to configure the duration of the address hold time. This parameter can be a value between 0 and 0xF.地址保持的时钟周期!
FSMC_AddressSetupTime:Defines the number of HCLK cycles to configure the duration of the address setup time. This parameter can be a value between 0 and 0xF. 明显是地址建立飞时间周期
FSMC_BusTurnAroundDuration:Defines the number of HCLK cycles to configure the duration of the bus turnaround. This parameter can be a value between 0 and 0xF.这个应该是指总线翻转周期么,不是很了解
FSMC_CLKDivision:Defines the period of CLK clock output signal, expressed in number of HCLK cycles. This parameter can be a value between 1 and 0xF6 u2 P0 S' F4 U
明显是指HCLK的分频系数
; P/ q5 g7 e1 \  _# p$ b7 ?( f
FSMC_DataLatency:Defines the number of memory clock cycles to issue to the memory before getting the first data. The value of this parameter depends on the memory type as shown below:1 t+ t  V, |: I( r7 @/ c7 P3 W
  n9 Y) T/ Q9 M# A
  • It must be set to 0 in case of a CRAM
  • It is don't care in asynchronous NOR, SRAM or ROM accesses
  • It may assume a value between 0 and 0xF in NOR Flash memories with synchronous burst mode enable
    , U3 q, I! V5 w8 s
:数据延迟时间注意了,这个可是有限制的,在我们控制LCD的时候倒是不用管它,应该是可以设为0的 % I# ^+ E3 s" I- f' m4 P9 X4 P
FSMC_DataSetupTime:这个相应的就是数据的建立时间了
$ k0 Z  Z, g* ]  O, R
通过对比,发现上述配置是可行的,不过大家也可以按照要求更改。理论上,在速度要求不是很高的场合,大一点是没有关系的,但是下限得注意,具体是多少,我也走不知道,等以后再说吧!
然后就是看这个结构体了FSMC_NORSRAMInitStructure,成员如下:

; q5 A" L8 S! m* D/ p9 ^) M( O: T4 y1 C' T$ f$ }, L0 Q9 U) m- G
似乎有些复杂,同时也说明了它的功能强大吧!
FSMC_AsynchronousWait:Enables or disables wait signal during asynchronous transfers, valid only with asynchronous Flash memories,明显就是使能等待同步信号否?
FSMC_Bank:这个应该是bank的选择吧,明显取值有以下几种:
" ~$ M1 w# n$ x/ p+ O  K
#define
FSMC_Bank1_NORSRAM1   ((uint32_t)0x00000000)
#define
FSMC_Bank1_NORSRAM2   ((uint32_t)0x00000002)
#define
FSMC_Bank1_NORSRAM3   ((uint32_t)0x00000004)
#define
FSMC_Bank1_NORSRAM4   ((uint32_t)0x00000006)
- o! X1 z* m8 T
FSMC_BurstAccessMode:Enables or disables the burst access mode for Flash memory, valid only with synchronous burst Flash memories.这个什么呢?不懂继续看吧!
FSMC_DataAddressMux:Specifies whether the address and data values are multiplexed on the databus or not,数据地址引脚是否复用,明显这里我们不需要!!
FSMC_ExtendedMode:Enables or disables the extended mode.,外扩模式否?应该是不用的
FSMC_MemoryDataWidth:位宽,我使用的是16位的TFT,所以应该是16,看看取值, k2 U5 \8 E% @" n3 |! l% w. D
果然:
#define
FSMC_MemoryDataWidth_16b   ((uint32_t)0x00000010)
#define
FSMC_MemoryDataWidth_8b   ((uint32_t)0x00000000)
FSMC_MemoryType:Specifies the type of external memory attached to the corresponding memory bank.意思应该是当我们外扩存储器的时候,分配哪一个bank吧,看取值。应该是0-3吧!看结果似乎有些问题,它是指外扩的存储器类型
#define
FSMC_MemoryType_NOR   ((uint32_t)0x00000008)
#define
FSMC_MemoryType_PSRAM   ((uint32_t)0x00000004)
#define
FSMC_MemoryType_SRAM   ((uint32_t)0x00000000

3 G0 F. X) I- t1 Y8 a7 H
FSMC_WaitSignal:Enables or disables the wait-state insertion via wait signal等待信号,等待状态与否
FSMC_WaitSignalPolarity:Specifies the wait signal polarity, valid only when accessing the Flash memory in burst mode,是指奇偶校验信号么?但是这个只需在flash的burst模式里面设置。
FSMC_WrapMode:Enables or disables the Wrapped burst access mode for Flash memory翻转模式?
FSMC_WriteBurst :Enables or disables the write burst operation写操作的
FSMC_WriteOperation:Enables or disables the write operation in the selected bank by the FSMC
FSMC_WriteTimingStruct! N$ r; ~% o, {; U2 E* j
FSMC_ReadWriteTimingStruct还有两个这样的结构体! Timing Parameters for write and read access if the ExtendedMode is not used  ,当我们没有使用外扩模式的时候需要配置,显然这里需要配置的!2 H/ o: q2 v! [$ L5 z* b
这两个结构体就是上面分析了的。所以我们只要执行这个语句,就能完成FSMC的配置了
' C& R  I# o6 N' l+ T7 XFSMC_NORSRAMInit(&FSMC_NORSRAMInitStructure);  
6 q9 U- E0 q3 D* _  o" H9 E8 [9 g

  `/ p; Q' W2 G! }# H8 |至此分析完毕!% _& Q* H% F: L/ M2 }
然后就是简单的初始化TFT了: [. J8 {& M$ V" x7 L
个人觉得有几点需要注意的地方,也总结一下!
8 K6 L* ]) e: e/ E- r: V  U 关于使用16位宽的时候的地址的问题!
( c" K  K$ X* X7 F7 ~ 用的第17位,插16位的线$ `0 Z3 P. q: T; v  @
假如我们这样访问
*(volatile unsigned short int *)(0x60020000)=val

" Z. v0 a! P' g1 g+ }; _
这时候该地址的bit17位为1,因为我们使用16位宽模式,先看下面一张图
) \* Z4 ~% e% c  m* V

7 a0 i+ E4 g6 ~0 v
收藏 评论2 发布时间:2015-4-1 10:11

举报

2个回答
stary666 回答时间:2015-4-1 11:06:23
没有简化的代码吗?
为什么是EEFOCUS小白 回答时间:2015-4-3 12:15:35
没有哦   

所属标签

相似分享

官网相关资源

关于
我们是谁
投资者关系
意法半导体可持续发展举措
创新与技术
意法半导体官网
联系我们
联系ST分支机构
寻找销售人员和分销渠道
社区
媒体中心
活动与培训
隐私策略
隐私策略
Cookies管理
行使您的权利
官方最新发布
STM32N6 AI生态系统
STM32MCU,MPU高性能GUI
ST ACEPACK电源模块
意法半导体生物传感器
STM32Cube扩展软件包
关注我们
st-img 微信公众号
st-img 手机版