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 | | #define | | #define | | #define | | + `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_NORSRAMInitStructure,成员如下: uint32_t | | uint32_t | | uint32_t | | uint32_t | | uint32_t | | uint32_t | | uint32_t | | | | uint32_t | | uint32_t | | uint32_t | | uint32_t | | uint32_t | | uint32_t | | | |
; 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 | | #define | | #define | | #define | | - 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_MemoryType:Specifies the type of external memory attached to the corresponding memory bank.意思应该是当我们外扩存储器的时候,分配哪一个bank吧,看取值。应该是0-3吧!看结果似乎有些问题,它是指外扩的存储器类型 | | | | 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_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 |