Skip to content

STM32 命名规则

命名规则

STM32 xx ww y z α β

  • xx:系列家族
  • ww:子类型,因系列家族的不同而异
  • y:封装引脚数
  • z:闪存 (Flash) 容量
  • α:封装类型
  • β:工作温度

STM32 F1 03 C 8 T 6

  • F1:F1 系列
  • 03:03 子系列
  • C:48 个引脚
  • 8:64 KB Flash
  • TLQFP 封装
  • 6:-40℃ ~ 85℃

STM32 F4 07 Z G T 6

  • F4:F4 系列
  • 07:07 子系列
  • Z:144 引脚
  • G:1024 KB Flash
  • T:LQFP 封装
  • 6:-40℃ ~ 85℃

具体编码对应数值见后续表格。

数据来源

系列家族、引脚数、闪存容量 来自 STM32_Part number decoding - Wikipedia,使用 Convert HTML Table to Markdown Table - Table Convert Online 工具,将 HTML <table> 转化为 Markdown Table

封装类型、工作温度 来自 Understanding STM32 Naming Conventions

xx:系列家族

CodeCoreMax freq [MHz]Max FLASH [KB]Max SRAM [KB]Target
F0Cortex-M04825632Mainstream
F1Cortex-M372102496Mainstream
F2Cortex-M31201024128High performance
F3Cortex-M4F7251280Mainstream
F4Cortex-M4F1802048384High performance
G0Cortex-M0+64512144Mainstream
G4Cortex-M4F170512128Mainstream
F7Cortex-M7F2162048512High performance
H7Cortex-M7F48020481024High performance
L0Cortex-M0+3219220Ultra low power
L1Cortex-M33251280Ultra low power
L4Cortex-M4F801024320Ultra low power
L4+Cortex-M4F1202048640Ultra low power
L5Cortex-M33F110512256Ultra low power
U5Cortex-M33F1602048786Ultra low power
WBCortex-M4F641024256Wireless
WLCortex-M44825664Wireless

y:封装引脚数

CodeNumber of pins
A169
B208
C48
F20
G28
H40
I176
J8/72
K32
M81
N216
Q132
R64
T36
U63
V100
Z144

z:闪存容量

CodeFLASH size [KB]
416
632
864
B128
Z192
C256
D384
E512
F768
G1024
H1536
I2048

α:封装类型

CodePackage
PTSOOP
HBGA
UVFQFPN
TLQFP
YWLCSP

β:工作温度

CodeTemperature
6-40℃ ~ 85℃
7-40℃ ~ 105℃

参考