From ec429f152cf1d32a86f5783ed87453b42f7ef190 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Mon, 20 Aug 2018 23:28:00 +0200 Subject: o Better STM32 setup. --- .gitignore | 3 + dodo.py | 43 + requirements.txt | 4 + rules/.gitignore | 2 + rules/pom.xml | 72 + rules/src/main/java/io/trygvis/semantic/Main.java | 88 + rules/src/main/resources/log4j2.xml | 26 + stm32/__init__.py | 87 + stm32/csv/STM32 High Performance MCUs.csv | 288 + stm32/csv/STM32 Mainstream MCUs.csv | 237 + stm32/csv/STM32 Ultra Low Power MCUs.csv | 286 + stm32/csv/STM32 Wireless MCUs.csv | 4 + stm32/owl/STM32 High Performance MCUs.owl | 13771 ++++++++++++++++++++ stm32/owl/STM32 Mainstream MCUs.owl | 11121 ++++++++++++++++ stm32/owl/STM32 Ultra Low Power MCUs.owl | 13392 +++++++++++++++++++ stm32/owl/STM32 Wireless MCUs.owl | 403 + stm32/run.py | 76 +- stm32/stm32.rules | 22 + 18 files changed, 39905 insertions(+), 20 deletions(-) create mode 100644 dodo.py create mode 100644 requirements.txt create mode 100644 rules/.gitignore create mode 100644 rules/pom.xml create mode 100644 rules/src/main/java/io/trygvis/semantic/Main.java create mode 100644 rules/src/main/resources/log4j2.xml create mode 100644 stm32/__init__.py create mode 100644 stm32/csv/STM32 High Performance MCUs.csv create mode 100644 stm32/csv/STM32 Mainstream MCUs.csv create mode 100644 stm32/csv/STM32 Ultra Low Power MCUs.csv create mode 100644 stm32/csv/STM32 Wireless MCUs.csv create mode 100644 stm32/owl/STM32 High Performance MCUs.owl create mode 100644 stm32/owl/STM32 Mainstream MCUs.owl create mode 100644 stm32/owl/STM32 Ultra Low Power MCUs.owl create mode 100644 stm32/owl/STM32 Wireless MCUs.owl create mode 100644 stm32/stm32.rules diff --git a/.gitignore b/.gitignore index 63cf315..39d49cc 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ .~* +env +__pycache__ +.doit.db diff --git a/dodo.py b/dodo.py new file mode 100644 index 0000000..1215454 --- /dev/null +++ b/dodo.py @@ -0,0 +1,43 @@ +import glob +import shutil +from collections import namedtuple +from pathlib import Path +import stm32 + +File = namedtuple("File", "xlsx, csv, owl") + +files = [File(Path(xlsx), Path("stm32/csv/{}.csv".format(xlsx[6:-5])), Path("stm32/owl/{}.owl".format(xlsx[6:-5]))) + for xlsx in list(glob.glob("stm32/*.xlsx"))] + +def make_parent(path): + d = path.parent + if not d.is_dir(): + d.mkdir() + +def task_stm32_csv(): + def action(xlsx, csv): + # print("xlsx={}, csv={}".format(xlsx, csv)) + make_parent(csv) + stm32.xlsx_to_csv(xlsx, csv) + + for f in files: + yield dict( + name=f.csv, + actions=[(action, [f.xlsx, f.csv])], + file_dep=[f.xlsx], + targets=[f.csv], + clean=True) + +def task_stm32_owl(): + def action(csv, owl): + # print("csv={}, owl={}".format(csv, owl)) + make_parent(owl) + stm32.csv_to_owl(csv, owl) + + for f in files: + yield dict( + name=f.owl, + actions=[(action, [f.csv, f.owl])], + file_dep=[f.csv], + targets=[f.owl], + clean=True) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..419da55 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +jinja2 +openpyxl +owlready2 +doit diff --git a/rules/.gitignore b/rules/.gitignore new file mode 100644 index 0000000..3a247a3 --- /dev/null +++ b/rules/.gitignore @@ -0,0 +1,2 @@ +logs +target diff --git a/rules/pom.xml b/rules/pom.xml new file mode 100644 index 0000000..ff7b8b3 --- /dev/null +++ b/rules/pom.xml @@ -0,0 +1,72 @@ + + 4.0.0 + + io.trygvis.semantic + semantic-sandbox + 0.0.1-SNAPSHOT + + + UTF-8 + 1.8 + 1.8 + + + + + org.apache.logging.log4j + log4j-api + 2.6.2 + + + org.apache.logging.log4j + log4j-core + 2.6.2 + + + org.apache.logging.log4j + log4j-slf4j-impl + 2.6.2 + + + junit + junit + 4.12 + test + + + + org.apache.jena + apache-jena-libs + 3.8.0 + pom + + + + + + + org.codehaus.mojo + appassembler-maven-plugin + 1.10 + + + assemble + package + + assemble + + + + + + + io.trygvis.semantic.Main + rules + + + + + + + diff --git a/rules/src/main/java/io/trygvis/semantic/Main.java b/rules/src/main/java/io/trygvis/semantic/Main.java new file mode 100644 index 0000000..9c8e9c6 --- /dev/null +++ b/rules/src/main/java/io/trygvis/semantic/Main.java @@ -0,0 +1,88 @@ +package io.trygvis.semantic; + +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.List; +import java.util.Iterator; + +import org.apache.jena.dboe.base.file.Location; +import org.apache.jena.query.Dataset; +import org.apache.jena.query.QueryExecution; +import org.apache.jena.query.QueryExecutionFactory; +import org.apache.jena.query.QuerySolution; +import org.apache.jena.query.ReadWrite; +import org.apache.jena.query.ResultSet; +import org.apache.jena.rdf.model.InfModel; +import org.apache.jena.rdf.model.Model; +import org.apache.jena.rdf.model.ModelFactory; +import org.apache.jena.rdf.model.Property; +import org.apache.jena.rdf.model.RDFNode; +import org.apache.jena.rdf.model.Resource; +import org.apache.jena.rdf.model.Statement; +import org.apache.jena.rdf.model.StmtIterator; +import org.apache.jena.reasoner.Derivation; +import org.apache.jena.reasoner.Reasoner; +import org.apache.jena.reasoner.rulesys.Builtin; +import org.apache.jena.reasoner.rulesys.BuiltinRegistry; +import org.apache.jena.reasoner.rulesys.GenericRuleReasoner; +import org.apache.jena.reasoner.rulesys.MapBuiltinRegistry; +import org.apache.jena.reasoner.rulesys.Rule; +import org.apache.jena.riot.RDFDataMgr; +import org.apache.jena.riot.RDFFormat; +import org.apache.jena.tdb2.TDB2Factory; +import org.apache.jena.update.UpdateExecutionFactory; +import org.apache.jena.update.UpdateFactory; +import org.apache.jena.update.UpdateProcessor; +import org.apache.jena.update.UpdateRequest; +import org.apache.jena.util.PrintUtil; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.slf4j.Marker; +import org.slf4j.MarkerFactory; + +public class Main { + private static Logger logger = LoggerFactory.getLogger(Main.class); + // Why This Failure marker + private static final Marker WTF_MARKER = MarkerFactory.getMarker("WTF"); + + public static void main(String[] args) { + try { + Path path = Paths.get(".").toAbsolutePath().normalize(); + + // Load RDF data + String data = Paths.get(args[0]).toUri().toString(); // path.toFile().getAbsolutePath() + "/src/main/resources/data1.ttl"; + Model model = ModelFactory.createDefaultModel(); + model.read(data); + + // Load rules + String rules = args[1]; // path.toFile().getAbsolutePath() + "/src/main/resources/student1.rules"; + Reasoner reasoner = new GenericRuleReasoner(Rule.rulesFromURL(rules)); + + InfModel infModel = ModelFactory.createInfModel(reasoner, model); + infModel.setDerivationLogging(true); + infModel.validate(); + List stmts = infModel.listStatements().toList(); + + Model dm = infModel.getDeductionsModel(); + + /* + if (true) { + logger.info("# statements = " + stmts.size()); + logger.info("dm.size() = " + dm.size()); + } else { + for (StmtIterator i = infModel.listStatements(); i.hasNext(); ) { + Statement stmt = i.nextStatement(); + logger.trace("Statememt = " + PrintUtil.print(stmt)); + } + } + */ + logger.info("Inferred data"); + for (StmtIterator i = dm.listStatements(); i.hasNext(); ) { + Statement stmt = i.nextStatement(); + logger.trace("Statememt = " + PrintUtil.print(stmt)); + } + } catch (Throwable t) { + logger.error(WTF_MARKER, t.getMessage(), t); + } + } +} diff --git a/rules/src/main/resources/log4j2.xml b/rules/src/main/resources/log4j2.xml new file mode 100644 index 0000000..e4f29d0 --- /dev/null +++ b/rules/src/main/resources/log4j2.xml @@ -0,0 +1,26 @@ + + + + + + + + + %markerSimpleName %-5p %C.%M():%L - %msg %ex{full}%n + + + + + + + + + + + diff --git a/stm32/__init__.py b/stm32/__init__.py new file mode 100644 index 0000000..ee5b63a --- /dev/null +++ b/stm32/__init__.py @@ -0,0 +1,87 @@ +import csv +import os +import owlready2 as owl +import types +import urllib +from openpyxl import load_workbook + +BASE_URL = "https://trygvis.io/owl/stm32" +SHARED_URL = "{}/shared.owl".format(BASE_URL) + +def xlsx_to_csv(xlsx_path, csv_path): + wb = load_workbook(filename=xlsx_path) + ws = wb.active + + header = [cell.value.strip() for cell in ws[6]] + + with open(csv_path, "w", newline="") as f: + w = csv.writer(f, lineterminator=os.linesep) + w.writerow(header) + for row in ws.iter_rows(min_row=7): + w.writerow([cell.value.strip() for cell in row]) + +def csv_to_owl(csv_path, owl_path): + data = [] + with open(csv_path, "r") as f: + def fixup(s): + return s.replace(u"\u00b5", "u").\ + replace(u"\u00b0", "o") + for row in csv.reader(f): + data.append([fixup(cell) for cell in row]) + + header = data[0] + chips = data[1:] + + line = owl_path.name[0:-4] + url = "{}/{}.owl".format(BASE_URL, urllib.parse.quote(line)) + onto = owl.get_ontology(url) + shared = onto.get_namespace(SHARED_URL) + + class Chip(owl.Thing): + namespace = shared + Chip.label = "Chip" + + class ChipLine(owl.Thing): + namespace = shared + ChipLine.label = "ChipLine" + + class HasChipLine(owl.ObjectProperty): + namespace = shared + domain = [Chip] + range = [ChipLine] + python_name = "chip_line" + HasChipLine.label = "Has Chip Line" + + with onto: + chip_line = ChipLine(urllib.parse.quote(line)) + chip_line.label = line + properties = [] + for field in header: + class_name = field + class_name = class_name.lower() + class_name = class_name.replace(" ", "-") + class_name = class_name.replace("/", "") + class_name = class_name.replace("(", "") + class_name = class_name.replace(")", "") + class_name = urllib.parse.quote(class_name) + cls = types.new_class(class_name, (owl.DataProperty,)) + cls.label = "Has {}".format(field) + cls.domain = [Chip] + cls.namespace = onto + python_name = class_name + python_name = python_name.replace(" ", "_") + python_name = python_name.replace("-", "_") + cls.python_name = python_name + properties.append(cls) + + for row in chips: + chip = Chip(row[0]) + chip.label = row[0] + chip.chip_line = [chip_line] + + for idx, value in enumerate(row): + prop = properties[idx] + chip.__setattr__(prop.python_name, [value]) + + with open(owl_path, "wb") as f: + onto.save(f) diff --git a/stm32/csv/STM32 High Performance MCUs.csv b/stm32/csv/STM32 High Performance MCUs.csv new file mode 100644 index 0000000..6079744 --- /dev/null +++ b/stm32/csv/STM32 High Performance MCUs.csv @@ -0,0 +1,288 @@ +Part Number,General Description,Marketing Status,Package,Core,Operating Frequency (MHz) (Processor speed),Co-Processor type,Co-Processor frequency (MHz) max,FLASH Size (kB) (Prog),Data E2PROM (B) nom,RAM Size (kB),Timers (16 bit) typ,Timers (32 bit) typ,Other timer functions,A/D Converters (12-bit channels),A/D Converters (16-bit channels),D/A Converters (12 bit) typ,Comparator,I/Os (High Current),Display controller,CAN typ,CAN FD typ,I2C typ,SPI typ,I2S typ,USB Type,USART typ,UART typ,Connectivity supported,Integrated op-amps,Additional Serial Interfaces,Parallel Interfaces,Crypto-HASH,TRNG typ,SMPS,Supply Voltage (V) min,Supply Voltage (V) max,Supply Current (µA) (Lowest power mode) typ,Supply Current (µA) (Run mode (per Mhz)) typ,Operating Temperature (°C) min,Operating Temperature (°C) max +STM32F411VE,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 100 MHz CPU, ART Accelerator",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,100,-,-,512,-,128,6,2,"24-bit downcounter,2xWDG,RTC",16,-,-,-,81,-,-,-,3,5,5,USB OTG FS,3,-,-,-,-,SDIO,-,-,-,1.7,3.6,1.8,100,-40,85 +STM32F413VG,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,100,-,-,1024,-,320,13,2,"2xWDG,SysTick,RTC",16,-,2,-,81,-,3,-,3,5,5,USB OTG FS,4,6,-,-,SAI,"DFSDM,FSMC,Quad SPI,SD/MMC,SDIO",-,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F730I8,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 64 Kbytes of Flash memory, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM",Active,BGA 176,Arm Cortex-M7,216,-,-,64,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,138,-,1,-,4,5,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",AES,true,-,1.7,3.6,1.7,472,-40,"105,85" +STM32F730R8,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 64 Kbytes of Flash memory, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto,SDRAM",Active,LQFP 64 10x10x1.4,Arm Cortex-M7,216,-,-,64,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,50,-,1,-,4,4,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",AES,true,-,1.7,3.6,1.7,472,-40,"105,85" +STM32F730V8,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 64 Kbytes of Flash memory, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM",Active,LQFP 100 14x14x1.4,Arm Cortex-M7,216,-,-,64,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,-,1,-,4,4,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",AES,true,-,1.7,3.6,1.7,472,-40,"105,85" +STM32F730Z8,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 64 Kbytes of Flash memory, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM",Active,LQFP 144 20x20x1.4,Arm Cortex-M7,216,-,-,64,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,112,-,1,-,4,5,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",AES,true,-,1.7,3.6,1.7,472,-40,"105,85" +STM32F745IE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,512,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,140,-,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,"105,85" +STM32F746NG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M7,216,-,-,1024,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,"105,85" +STM32F750N8,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 64 Kbyte of Flash memory, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M7,216,-,-,64,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,472,-40,"105,85" +STM32F750V8,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 64 Kbyte of Flash memory, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT",Active,LQFP 100 14x14x1.4,Arm Cortex-M7,216,-,-,64,-,320,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,LCD TFT Controller up to 1024x728,2,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,472,-40,"105,85" +STM32F750Z8,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 64 Kbyte of Flash memory, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT",Active,LQFP 144 20x20x1.4,Arm Cortex-M7,216,-,-,64,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,472,-40,"105,85" +STM32F765NI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,-,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,"105,85" +STM32F765ZG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM",Active,LQFP 144 20x20x1.4,Arm Cortex-M7,216,-,-,1024,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,-,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,"105,85" +STM32H750IB,"High-performance and DSP with DP-FPU, Arm Cortex-M7 MCU with 128Kbytes of Flash memory, 1MB RAM, 400 MHz CPU, L1 cache, external memory interface, JPEG codec, HW crypto, large set of peripherals",Active,BGA 176,Arm Cortex-M7,400,-,-,128,-,1024,18,-,"24-bit downcounter,2xWDG,HR Timer,LP timer,RTC",-,20,2,2,140,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.62,3.6,4,270,-40,"105,85" +STM32H750VB,"High-performance and DSP with DP-FPU, Arm Cortex-M7 MCU with 128 Kbytes of Flash memory, 1MB RAM, 400 MHz CPU, L1 cache, external memory interface, JPEG codec, HW crypto, large set of peripherals",Active,LQFP 100 14x14x1.4,Arm Cortex-M7,400,-,-,128,-,1024,18,-,"24-bit downcounter,2xWDG,HR Timer,LP timer,RTC",-,20,2,2,82,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.71,3.6,4,270,-40,"105,85" +STM32H750XB,"High-performance and DSP with DP-FPU, Arm Cortex-M7 MCU with 128KBytes of Flash memory, 1MB RAM, 400 MHz CPU, L1 cache, external memory interface, JPEG codec, HW crypto, large set of peripherals",Active,TFBGA 14X14X1.2 P 0.8 240+25L,Arm Cortex-M7,400,-,-,128,-,1024,18,-,"24-bit downcounter,2xWDG,HR Timer,LP timer,RTC",-,20,2,2,168,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.62,3.6,4,270,-40,"105,85" +STM32F205RB,"High-performance Arm Cortex-M3 MCU with 128 Kbytes Flash, 120 MHz CPU, ART Accelerator",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,120,-,-,128,-,64,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,51,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F205RC,"High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,120,-,-,256,-,96,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,51,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F205RE,"High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator",Active,"LQFP 64 10x10x1.4,WLCSP 66L R9X9 PITCH 0.4 MM",Arm Cortex-M3,120,-,-,512,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,51,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F205RF,"High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,120,-,-,768,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,51,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,-,-,-,1.8,3.6,2.5,188,-40,85 +STM32F205RG,"High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator",Active,"EWLCSP 66L DIE 411 P 0.4 MM,LQFP 64 10x10x1.4,WLCSP 66L R9X9 PITCH 0.4 MM",Arm Cortex-M3,120,-,-,1024,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,51,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F205VB,"High-performance Arm Cortex-M3 MCU with 128 Kbytes Flash, 120 MHz CPU, ART Accelerator",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,120,-,-,128,-,64,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,-,-,-,1.8,3.6,2.5,188,-40,85 +STM32F205VC,"High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,120,-,-,256,-,96,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F205VE,"High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,120,-,-,512,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F205VF,"High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,120,-,-,768,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,-,-,-,1.8,3.6,2.5,188,-40,85 +STM32F205VG,"High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,120,-,-,1024,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F205ZC,"High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,120,-,-,256,-,96,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F205ZE,"High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,120,-,-,512,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F205ZF,"High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,120,-,-,768,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,-,-,-,1.8,3.6,2.5,188,-40,85 +STM32F205ZG,"High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,120,-,-,1024,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F207IC,"High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M3,120,-,-,256,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,-,-,-,1.8,3.6,2.5,188,-40,85 +STM32F207IE,"High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M3,120,-,-,512,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,-,-,-,1.8,3.6,2.5,188,-40,85 +STM32F207IF,"High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M3,120,-,-,768,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,-,-,-,1.8,3.6,2.5,188,-40,85 +STM32F207IG,"High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M3,120,-,-,1024,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F207VC,"High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,120,-,-,256,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F207VE,"High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,120,-,-,512,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,-,-,-,1.8,3.6,2.5,188,-40,85 +STM32F207VF,"High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,120,-,-,768,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,-,-,-,1.8,3.6,2.5,188,-40,85 +STM32F207VG,"High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,120,-,-,1024,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F207ZC,"High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,120,-,-,256,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F207ZE,"High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,120,-,-,512,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,-,-,-,1.8,3.6,2.5,188,-40,85 +STM32F207ZF,"High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,120,-,-,768,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,-,-,-,1.8,3.6,2.5,188,-40,85 +STM32F207ZG,"High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,120,-,-,1024,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,-,-,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F215RE,"High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, HW crypto",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,120,-,-,512,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,51,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,"AES,DES/TDES,MD5,SHA",true,-,1.8,3.6,2.5,188,-40,85 +STM32F215RG,"High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, HW crypto",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,120,-,-,1024,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,51,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,"AES,DES/TDES,MD5,SHA",true,-,1.8,3.6,2.5,188,-40,85 +STM32F215VE,"High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, HW crypto",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,120,-,-,512,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,"AES,DES/TDES,MD5,SHA",true,-,1.8,3.6,2.5,188,-40,85 +STM32F215VG,"High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, HW crypto",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,120,-,-,1024,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,"AES,DES/TDES,MD5,SHA",true,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F215ZE,"High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, HW crypto",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,120,-,-,512,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,"AES,DES/TDES,MD5,SHA",true,-,1.8,3.6,2.5,188,-40,85 +STM32F215ZG,"High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, HW crypto",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,120,-,-,1024,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,SDIO,"AES,DES/TDES,MD5,SHA",true,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F217IE,"High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M3,120,-,-,512,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,"AES,DES/TDES,MD5,SHA",true,-,1.8,3.6,2.5,188,-40,85 +STM32F217IG,"High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M3,120,-,-,1024,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,"AES,DES/TDES,MD5,SHA",true,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F217VE,"High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,120,-,-,512,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,"AES,DES/TDES,MD5,SHA",true,-,1.8,3.6,2.5,188,-40,85 +STM32F217VG,"High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,120,-,-,1024,-,128,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,"AES,DES/TDES,MD5,SHA",true,-,1.8,3.6,2.5,188,-40,85 +STM32F217ZE,"High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,120,-,-,512,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,"AES,DES/TDES,MD5,SHA",true,-,1.8,3.6,2.5,188,-40,"105,85" +STM32F217ZG,"High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,120,-,-,1024,-,128,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,2,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,SDIO,"AES,DES/TDES,MD5,SHA",true,-,1.8,3.6,2.5,188,-40,85 +STM32F401CB,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 84 MHz CPU, ART Accelerator",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M4,84,-,-,128,-,64,6,2,"24-bit downcounter,2xWDG,RTC",10,-,-,-,36,-,-,-,3,3,2,USB OTG FS,3,-,-,-,-,-,-,-,-,1.7,3.6,1.8,128,-40,"105,125,85" +STM32F401CC,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 84 MHz CPU, ART Accelerator",Active,"THIN WLCSP 49L DIE 423 PITCH 0.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 423 R 7X7 P 0.4 MM",Arm Cortex-M4,84,-,-,256,-,64,6,2,"24-bit downcounter,2xWDG,RTC",10,-,-,-,36,-,-,-,3,3,2,USB OTG FS,3,-,-,-,-,-,-,-,-,1.7,3.6,1.8,128,-40,"105,85" +STM32F401CD,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 384 Kbytes Flash, 84 MHz CPU, ART Accelerator",Active,"UFQFPN 48 7x7x0.55,WLCSP 49L DIE 433 P 0.4 MM",Arm Cortex-M4,84,-,-,384,-,96,6,2,"24-bit downcounter,2xWDG,RTC",10,-,-,-,36,-,-,-,3,3,2,USB OTG FS,3,-,-,-,-,-,-,-,-,1.7,3.6,1.8,137,-40,85 +STM32F401CE,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 84 MHz CPU, ART Accelerator",Active,"UFQFPN 48 7x7x0.55,WLCSP 49L DIE 433 P 0.4 MM",Arm Cortex-M4,84,-,-,512,-,96,6,2,"24-bit downcounter,2xWDG,RTC",10,-,-,-,36,-,-,-,3,3,2,USB OTG FS,3,-,-,-,-,-,-,-,-,1.7,3.6,1.8,137,-40,85 +STM32F401RB,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 84 MHz CPU, ART Accelerator",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,84,-,-,128,-,64,6,2,"24-bit downcounter,2xWDG,RTC",16,-,-,-,50,-,-,-,3,3,2,USB OTG FS,3,-,-,-,-,SDIO,-,-,-,1.7,3.6,"1.7,1.8",128,-40,85 +STM32F401RC,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 84 MHz CPU, ART Accelerator",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,84,-,-,256,-,64,6,2,"24-bit downcounter,2xWDG,RTC",16,-,-,-,50,-,-,-,3,3,2,USB OTG FS,3,-,-,-,-,SDIO,-,-,-,1.7,3.6,1.8,128,-40,"105,85" +STM32F401RD,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 384 Kbytes Flash, 84 MHz CPU, ART Accelerator",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,84,-,-,384,-,96,6,2,"24-bit downcounter,2xWDG,RTC",16,-,-,-,50,-,-,-,3,3,2,USB OTG FS,3,-,-,-,-,SDIO,-,-,-,1.7,3.6,1.8,137,-40,85 +STM32F401RE,"STM32 Dynamic Efficiency MCU, ARM Cortex-M4 core with DSP and FPU, up to 512 Kbytes Flash, 84 MHz CPU, Art Accelerator",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,84,-,-,512,-,96,6,2,"24-bit downcounter,2xWDG,RTC",16,-,-,-,50,-,-,-,3,3,2,USB OTG FS,3,-,-,-,-,SDIO,-,-,-,1.7,3.6,1.8,137,-40,"105,85" +STM32F401VB,"High-performance access line, Arm Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 84 MHz CPU, ART Accelerator",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,84,-,-,128,-,64,6,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,81,-,-,-,3,4,2,USB OTG FS,3,-,-,-,-,SDIO,-,-,-,1.7,3.6,1.8,128,-40,"125,85" +STM32F401VC,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 84 MHz CPU, ART Accelerator",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,84,-,-,256,-,64,6,2,"24-bit downcounter,2xWDG,RTC",16,-,-,-,81,-,-,-,3,4,2,USB OTG FS,3,-,-,-,-,SDIO,-,-,-,1.7,3.6,1.8,128,-40,"105,85" +STM32F401VD,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 384 Kbytes Flash, 84 MHz CPU, ART Accelerator",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,84,-,-,384,-,96,6,2,"24-bit downcounter,2xWDG,RTC",16,-,-,-,81,-,-,-,3,4,2,USB OTG FS,3,-,-,-,-,SDIO,-,-,-,1.7,3.6,1.8,137,-40,85 +STM32F401VE,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 84 MHz CPU, ART Accelerator",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,84,-,-,512,-,96,6,2,"24-bit downcounter,2xWDG,RTC",16,-,-,-,81,-,-,-,3,4,2,USB OTG FS,3,-,-,-,-,SDIO,-,-,-,1.7,3.6,1.8,137,-40,85 +STM32F405OE,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, FSMC",Active,WLCSP 90 BALLS DIE 413 P 0.4 MM,Arm Cortex-M4,168,-,-,512,-,192,12,2,"2 x WDG,24-bit down counter,RTC",13,-,2,-,72,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,"FSMC,SD/MMC",-,true,-,1.8,3.6,1.7,215,-40,85 +STM32F405OG,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC",Active,WLCSP 90 BALLS DIE 413 P 0.4 MM,Arm Cortex-M4,168,-,-,1024,-,192,12,2,"2 x WDG,24-bit down counter,RTC",13,-,2,-,72,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,"FSMC,SD/MMC",-,true,-,1.8,3.6,1.7,215,-40,85 +STM32F405RG,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,168,-,-,1024,-,192,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,51,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,"FSMC,SD/MMC",-,true,-,1.8,3.6,1.7,215,-40,"105,85" +STM32F405VG,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,168,-,-,1024,-,192,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,"FSMC,SD/MMC",-,true,-,1.8,3.6,1.7,215,-40,"105,85" +STM32F405ZG,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,168,-,-,1024,-,192,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,"FSMC,SD/MMC",-,true,-,1.8,3.6,1.7,215,-40,"105,85" +STM32F407IE,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,168,-,-,512,-,192,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,"FSMC,SD/MMC",-,true,-,1.8,3.6,1.7,215,-40,"105,85" +STM32F407IG,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,168,-,-,1024,-,192,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,"FSMC,SD/MMC",-,true,-,1.8,3.6,1.7,215,-40,"105,85" +STM32F407VE,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,168,-,-,512,-,192,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,"FSMC,SD/MMC",-,true,-,1.8,3.6,1.7,215,-40,85 +STM32F407VG,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,168,-,-,1024,-,192,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,"FSMC,SD/MMC",-,true,-,1.8,3.6,1.7,215,-40,"105,85" +STM32F407ZE,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,168,-,-,512,-,192,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,"FSMC,SD/MMC",-,true,-,1.8,3.6,1.7,215,-40,"105,85" +STM32F407ZG,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,168,-,-,1024,-,192,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,"FSMC,SD/MMC",-,true,-,1.8,3.6,1.7,215,-40,"105,85" +STM32F410C8,"STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 64 Kbytes Flash, 100 MHz CPU, Art Accelerator",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M4,100,-,-,64,-,32,5,1,"24-bit downcounter,2xWDG,RTC",10,-,1,-,36,-,-,-,3,3,3,-,3,-,-,-,-,-,-,-,-,1.7,3.6,2.6,89,-40,85 +STM32F410CB,"STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 128 Kbytes Flash, 100 MHz CPU, Art Accelerator",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M4,100,-,-,128,-,32,5,1,"24-bit downcounter,2xWDG,RTC",10,-,1,-,36,-,-,-,3,3,3,-,3,-,-,-,-,-,-,-,-,1.7,3.6,2.6,89,"-40,40","125,85" +STM32F410R8,"STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 64 Kbytes Flash, 100 MHz CPU, Art Accelerator",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,100,-,-,64,-,32,5,1,"24-bit downcounter,2xWDG,RTC",16,-,1,-,50,-,-,-,3,3,3,-,3,-,-,-,-,-,-,-,-,1.7,3.6,2.6,89,-40,85 +STM32F410RB,"STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 128 Kbytes Flash, 100 MHz CPU, Art Accelerator",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM",Arm Cortex-M4,100,-,-,128,-,32,5,1,"24-bit downcounter,2xWDG,RTC",16,-,1,-,50,-,-,-,3,3,3,-,3,-,-,-,-,-,-,-,-,1.7,3.6,2.6,89,-40,"105,125,85" +STM32F410T8,"STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 64 Kbytes Flash, 100 MHz CPU, Art Accelerator",Active,WLCSP 36L die 458 P 0.4 MM,Arm Cortex-M4,100,-,-,64,-,32,5,1,"24-bit downcounter,2xWDG,RTC",4,-,1,-,23,-,-,-,2,1,3,-,2,-,-,-,-,-,-,-,-,1.7,3.6,2.6,89,-40,85 +STM32F410TB,"STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 128 Kbytes Flash, 100 MHz CPU, Art Accelerator",Active,WLCSP 36L die 458 P 0.4 MM,Arm Cortex-M4,100,-,-,128,-,32,5,1,"24-bit downcounter,2xWDG,RTC",4,-,1,-,23,-,-,-,2,1,3,-,2,-,-,-,-,-,-,-,-,1.7,3.6,2.6,89,-40,"105,125,85" +STM32F411CC,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 100 MHz CPU, ART Accelerator",Active,"UFQFPN 48 7x7x0.55,WLCSP 49L DIE 431 P 0.4 MM",Arm Cortex-M4,100,-,-,256,-,128,6,2,"24-bit downcounter,2xWDG,RTC",10,-,2,-,36,-,-,-,3,5,5,USB OTG FS,3,-,-,-,-,SDIO,-,-,-,1.7,3.6,1.8,100,-40,85 +STM32F411CE,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 100 MHz CPU, ART Accelerator",Active,"UFQFPN 48 7x7x0.55,WLCSP 49L DIE 431 P 0.4 MM",Arm Cortex-M4,100,-,-,512,-,128,6,2,"24-bit downcounter,2xWDG,RTC",10,-,-,-,36,-,-,-,3,5,5,USB OTG FS,3,-,-,-,-,SDIO,-,-,-,1.7,3.6,1.8,100,-40,"105,125,85" +STM32F411RC,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 100 MHz CPU, ART Accelerator",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,100,-,-,256,-,128,6,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,50,-,-,-,3,5,5,USB OTG FS,3,-,-,-,-,SDIO,-,-,-,1.7,3.6,1.8,100,-40,"105,85" +STM32F411RE,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 100 MHz CPU, ART Accelerator",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,100,-,-,512,-,128,6,2,"24-bit downcounter,2xWDG,RTC",16,-,-,-,50,-,-,-,3,5,5,USB OTG FS,3,-,-,-,-,SDIO,-,-,-,1.7,3.6,1.8,100,-40,"105,85" +STM32F411VC,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 100 MHz CPU, ART Accelerator",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,100,-,-,256,-,128,6,2,"24-bit downcounter,2xWDG,RTC",16,-,-,-,81,-,-,-,3,5,5,USB OTG FS,3,-,-,-,-,SDIO,-,-,-,1.7,3.6,1.8,100,-40,85 +STM32F412CE,"STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 512 Kbytes Flash, 100 MHz CPU, Art Accelerator, DFSDM",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M4,100,-,-,512,-,256,12,2,"2xWDG,RTC,SysTick",10,-,-,-,36,-,2,-,4,5,5,USB OTG FS,3,-,-,-,-,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.7,3.6,1.1,112,-40,85 +STM32F412CG,"STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 1 Mbyte Flash, 100 MHz CPU, Art Accelerator, DFSDM",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M4,100,-,-,1024,-,256,12,2,"2xWDG,RTC,SysTick",10,-,-,-,36,-,2,-,4,5,5,USB OTG FS,3,-,-,-,-,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.7,3.6,1.1,112,-40,85 +STM32F412RE,"STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 512 Kbytes Flash, 100 MHz CPU, Art Accelerator, DFSDM",Active,"LQFP 64 10x10x1.4,WLCSP 64L DIE 441 P 0.4 MM",Arm Cortex-M4,100,-,-,512,-,256,12,2,"2xWDG,RTC,SysTick",16,-,-,-,50,-,2,-,4,5,5,USB OTG FS,4,-,-,-,-,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.7,3.6,1.1,112,-40,85 +STM32F412RG,"STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 1 Mbyte Flash, 100 MHz CPU, Art Accelerator, DFSDM",Active,"LQFP 64 10x10x1.4,WLCSP 64L DIE 441 P 0.4 MM",Arm Cortex-M4,100,-,-,1024,-,256,12,2,"2xWDG,RTC,SysTick",16,-,-,-,50,-,2,-,4,5,5,USB OTG FS,4,-,-,-,-,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.7,3.6,1.1,112,-40,85 +STM32F412VE,"STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 512 Kbytes Flash, 100 MHz CPU, Art Accelerator, DFSDM",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,100,-,-,512,-,256,12,2,"2xWDG,RTC,SysTick",16,-,-,-,81,-,2,-,4,5,5,USB OTG FS,4,-,-,-,-,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.7,3.6,1.1,112,-40,125 +STM32F412VG,"STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 1 Mbyte Flash, 100 MHz CPU, Art Accelerator, DFSDM",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,100,-,-,1024,-,256,12,2,"2xWDG,RTC,SysTick",16,-,-,-,81,-,2,-,4,5,5,USB OTG FS,4,-,-,-,-,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.7,3.6,1.1,112,-40,85 +STM32F412ZE,"STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 512 Kbytes Flash, 100 MHz CPU, Art Accelerator, DFSDM",Active,"LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM",Arm Cortex-M4,100,-,-,512,-,256,12,2,"2xWDG,RTC,SysTick",16,-,-,-,114,-,2,-,4,5,5,USB OTG FS,4,-,-,-,-,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F412ZG,"STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 1 Mbyte Flash, 100 MHz CPU, Art Accelerator, DFSDM",Active,"LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM",Arm Cortex-M4,100,-,-,1024,-,256,12,2,"2xWDG,RTC,SysTick",16,-,-,-,114,-,2,-,4,5,5,USB OTG FS,4,-,-,-,-,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.7,3.6,1.1,112,-40,85 +STM32F413CG,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M4,100,-,-,1024,-,320,13,2,"2xWDG,RTC,SysTick",10,-,2,-,36,-,3,-,3,5,5,USB OTG FS,3,3,-,-,SAI,"DFSDM,SD/MMC,SDIO",-,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F413CH,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M4,100,-,-,1536,-,320,13,2,"2xWDG,SysTick,RTC",10,-,2,-,36,-,3,-,3,5,5,USB OTG FS,3,3,-,-,SAI,"DFSDM,SD/MMC,SDIO",-,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F413MG,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM",Active,WLCSP 81L DIE 463 PITCH 0.4,Arm Cortex-M4,100,-,-,1024,-,320,13,2,"2xWDG,SysTick,RTC",16,-,2,-,60,-,3,-,3,5,5,USB OTG FS,4,3,-,-,SAI,"DFSDM,FSMC,Quad SPI,SD/MMC,SDIO",-,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F413MH,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM",Active,WLCSP 81L DIE 463 PITCH 0.4,Arm Cortex-M4,100,-,-,1536,-,320,13,2,"2xWDG,SysTick,RTC",16,-,2,-,60,-,3,-,3,5,5,USB OTG FS,4,3,-,-,SAI,"DFSDM,FSMC,Quad SPI,SD/MMC,SDIO",-,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F413RG,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,100,-,-,1024,-,320,13,2,"2xWDG,SysTick,RTC",16,-,2,-,50,-,3,-,3,5,5,USB OTG FS,4,3,-,-,SAI,"DFSDM,FSMC,Quad SPI,SD/MMC,SDIO",-,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F413RH,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,100,-,-,1536,-,320,13,2,"2xWDG,RTC,SysTick",16,-,2,-,50,-,3,-,3,5,5,USB OTG FS,4,3,-,-,SAI,"DFSDM,FSMC,Quad SPI,SD/MMC,SDIO",-,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F413VH,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,100,-,-,1536,-,320,13,2,"2xWDG,SysTick,RTC",16,-,2,-,81,-,3,-,3,5,5,USB OTG FS,4,6,-,-,SAI,"DFSDM,FSMC,Quad SPI,SD/MMC,SDIO",-,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F413ZG,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM",Active,"LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM",Arm Cortex-M4,100,-,-,1024,-,320,13,2,"2xWDG,SysTick,RTC",16,-,2,-,114,-,3,-,3,5,5,USB OTG FS,4,6,-,-,SAI,"DFSDM,FSMC,Quad SPI,SD/MMC,SDIO",-,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F413ZH,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM",Active,"LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM",Arm Cortex-M4,100,-,-,1536,-,320,13,2,"2xWDG,SysTick,RTC",16,-,2,-,114,-,3,-,3,5,5,USB OTG FS,4,6,-,-,SAI,"DFSDM,FSMC,Quad SPI,SD/MMC,SDIO",-,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F415OG,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC, HW crypto",Active,WLCSP 90 BALLS DIE 413 P 0.4 MM,Arm Cortex-M4,168,-,-,1024,-,192,12,2,"2 x WDG,24-bit down counter,RTC",13,-,2,-,72,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,"FSMC,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.8,3.6,1.7,215,-40,85 +STM32F415RG,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, HW crypto",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,168,-,-,1024,-,192,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,51,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,"FSMC,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.8,3.6,1.7,215,-40,85 +STM32F415VG,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC, HW crypto",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,168,-,-,1024,-,192,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,"FSMC,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.8,3.6,1.7,215,-40,85 +STM32F415ZG,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC, HW crypto",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,168,-,-,1024,-,192,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,-,"FSMC,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.8,3.6,1.7,215,-40,85 +STM32F417IE,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,168,-,-,512,-,192,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,"Camera IF,FSMC,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.8,3.6,1.7,215,-40,85 +STM32F417IG,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,168,-,-,1024,-,192,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,"Camera IF,FSMC,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.8,3.6,1.7,215,-40,"105,85" +STM32F417VE,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,168,-,-,512,-,192,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,"Camera IF,FSMC,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.8,3.6,1.7,215,-40,85 +STM32F417VG,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,168,-,-,1024,-,192,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,"Camera IF,FSMC,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.8,3.6,1.7,215,-40,"105,85" +STM32F417ZE,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,168,-,-,512,-,192,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,"Camera IF,FSMC,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.8,3.6,1.7,215,-40,85 +STM32F417ZG,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,168,-,-,1024,-,192,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,3,2,USB OTG FS + USB OTG FS/HS,4,2,-,-,Ethernet,"Camera IF,FSMC,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.8,3.6,1.7,215,-40,85 +STM32F423CH,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M4,100,-,-,1536,-,320,13,2,"2xWDG,SysTick,RTC",10,-,2,-,36,-,3,-,3,5,5,USB OTG FS,3,3,-,-,SAI,"DFSDM,SD/MMC,SDIO",AES,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F423MH,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES",Active,WLCSP 81L DIE 463 PITCH 0.4,Arm Cortex-M4,100,-,-,1536,-,320,13,2,"2xWDG,SysTick,RTC",16,-,2,-,60,-,3,-,3,5,5,USB OTG FS,4,3,-,-,SAI,"DFSDM,FSMC,Quad SPI,SD/MMC,SDIO",AES,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F423RH,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,100,-,-,1536,-,320,13,2,"2xWDG,SysTick,RTC",16,-,2,-,50,-,3,-,3,5,5,USB OTG FS,4,3,-,-,SAI,"DFSDM,FSMC,Quad SPI,SD/MMC,SDIO",AES,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F423VH,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,100,-,-,1536,-,320,13,2,"2xWDG,SysTick,RTC",16,-,2,-,81,-,3,-,3,5,5,USB OTG FS,4,6,-,-,SAI,"DFSDM,FSMC,Quad SPI,SD/MMC,SDIO",AES,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F423ZH,"High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES",Active,"LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM",Arm Cortex-M4,100,-,-,1536,-,320,13,2,"2xWDG,SysTick,RTC",16,-,2,-,114,-,3,-,3,5,5,USB OTG FS,4,6,-,-,SAI,"DFSDM,FSMC,Quad SPI,SD/MMC,SDIO",AES,true,-,1.7,3.6,1.1,112,-40,"125,85" +STM32F427AG,"High-performance Advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,130,-,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FSMC,SDIO",-,true,-,1.7,3.6,1.7,208,-40,85 +STM32F427AI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,130,-,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,true,-,1.7,3.6,1.7,208,-40,85 +STM32F427IG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ARTAccelerator, FMC with SDRAM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,true,-,1.7,3.6,1.7,208,-40,85 +STM32F427II,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,true,-,1.7,3.6,1.7,208,-40,"105,85" +STM32F427VG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,true,-,1.8,3.6,1.7,208,-40,85 +STM32F427VI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator,FSMC",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,true,-,1.8,3.6,1.7,208,-40,"105,85" +STM32F427ZG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,true,-,1.7,3.6,1.7,208,-40,85 +STM32F427ZI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,true,-,1.7,3.6,1.7,208,-40,"105,85" +STM32F429AG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,130,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F429AI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,130,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F429BE,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT",Active,LQFP 208 28x28x1.4,Arm Cortex-M4,180,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F429BG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT",Active,LQFP 208 28x28x1.4,Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F429BI,"High-performance advanced line, Arm Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT",Active,LQFP 208 28x28x1.4,Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,"105,85" +STM32F429IE,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerateur, Chrom-ART Accelerator, FMC with SDRAM, TFT",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,180,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,140,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F429IG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F429II,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F429NE,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M4,180,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,2,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F429NG,"High-performance and DSP with FPU, ARM Cortex-M4 MCU with 1 Mbyte Flash, 180 MHz CPU, Art Accelerator, SRAM, TFT",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI",SDIO,-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F429NI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,"105,85" +STM32F429VE,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC, TFT",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,LCD TFT Controller up to 1024x728,2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F429VG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC, TFT",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,LCD TFT Controller up to 1024x728,2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F429VI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC, TFT",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,LCD TFT Controller up to 1024x728,2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F429ZE,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,180,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F429ZG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT",Active,"LQFP 144 20x20x1.4,WLCSP 143 BALLS DIE 419 P 0.4MM",Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F429ZI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ARTAccelerator, FMC with SDRAM, TFT",Active,"LQFP 144 20x20x1.4,WLCSP 143 BALLS DIE 419 P 0.4MM",Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO",-,-,-,1.8,3.6,1.7,208,-40,85 +STM32F437AI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, HW crypto",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,130,-,2,-,2,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,85 +STM32F437IG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, HW crypto",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,85 +STM32F437II,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, HW crypto",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,-,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,"105,85" +STM32F437VG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC, HW crypto",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,"105,85" +STM32F437VI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC, HW crypto",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,-,2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,"105,85" +STM32F437ZG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, HW crypto",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,85 +STM32F437ZI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbyes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, HW crypto",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,-,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,"105,85" +STM32F439AI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,85 +STM32F439BG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto",Active,LQFP 208 28x28x1.4,Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,85 +STM32F439BI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto",Active,LQFP 208 28x28x1.4,Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,"105,85" +STM32F439IG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,85 +STM32F439II,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,140,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,"105,85" +STM32F439NG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,85 +STM32F439NI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,85 +STM32F439VG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC, TFT, HW crypto",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,LCD TFT Controller up to 1024x728,2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,85 +STM32F439VI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC, TFT, HW crypto",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",16,-,2,-,82,LCD TFT Controller up to 1024x728,2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,85 +STM32F439ZG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto",Active,"LQFP 144 20x20x1.4,WLCSP 143 BALLS DIE 419 P 0.4MM",Arm Cortex-M4,180,-,-,1024,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,85 +STM32F439ZI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto",Active,"LQFP 144 20x20x1.4,WLCSP 143 BALLS DIE 419 P 0.4MM",Arm Cortex-M4,180,-,-,2048,-,256,12,2,"2 x WDG,24-bit down counter,RTC",24,-,2,-,114,LCD TFT Controller up to 1024x728,2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,208,-40,85 +STM32F446MC,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI",Active,WLCSP 81L DIE 421 R 9X9 P 0.4 MM,Arm Cortex-M4,180,-,-,256,-,128,12,2,"24-bit downcounter,2xWDG,RTC",14,-,2,-,63,-,2,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"HDMI CEC,SAI","FMC,Quad SPI",-,-,-,1.8,3.6,1.12,167,-40,85 +STM32F446ME,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI",Active,WLCSP 81L DIE 421 R 9X9 P 0.4 MM,Arm Cortex-M4,180,-,-,512,-,128,12,2,"24-bit downcounter,2xWDG,RTC",14,-,2,-,63,-,2,-,4,4,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,4,-,-,"HDMI CEC,SAI","FMC,Quad SPI",-,-,-,1.8,3.6,1.12,167,-40,85 +STM32F446RC,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,180,-,-,256,-,128,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,50,-,2,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"HDMI CEC,SAI","Quad SPI,SDIO",-,-,-,1.8,3.6,1.12,167,-40,"105,85" +STM32F446RE,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,180,-,-,512,-,128,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,50,-,2,-,4,4,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,4,-,-,"HDMI CEC,SAI","FMC,Quad SPI,SDIO",-,-,-,1.8,3.6,1.12,167,-40,"105,85" +STM32F446VC,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,256,-,128,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,81,-,2,-,4,4,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,4,-,-,"HDMI CEC,SAI","FMC,Quad SPI,SDIO",-,-,-,1.8,3.6,1.12,167,-40,"105,85" +STM32F446VE,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,512,-,128,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,81,-,2,-,4,4,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,4,-,-,"HDMI CEC,SAI","FMC,Quad SPI,SDIO",-,-,-,1.8,3.6,1.12,167,-40,"105,85" +STM32F446ZC,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI",Active,"LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,UFBGA 144 7x7x0.6",Arm Cortex-M4,180,-,-,256,-,128,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,-,2,-,4,4,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,4,-,-,"HDMI CEC,SAI","FMC,Quad SPI,SDIO",-,-,-,1.8,3.6,1.12,167,-40,"105,85" +STM32F446ZE,"High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI",Active,"LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,UFBGA 144 7x7x0.6",Arm Cortex-M4,180,-,-,512,-,128,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,-,2,-,4,4,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,4,-,-,"HDMI CEC,SAI","FMC,Quad SPI,SDIO",-,-,-,1.8,3.6,1.12,167,-40,"105,85" +STM32F469AE,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,180,-,-,512,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,144,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469AG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,"UFBGA 7X7X0.6 169L P 0.5 MM,WLCSP 168L DIE 434 12X14 P 0.4MM",Arm Cortex-M4,180,-,-,1024,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469AI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,"UFBGA 7X7X0.6 169L P 0.5 MM,WLCSP 168L DIE 434 12X14 P 0.4MM",Arm Cortex-M4,180,-,-,2048,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469BE,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,LQFP 208 28x28x1.4,Arm Cortex-M4,180,-,-,512,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,161,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469BG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,LQFP 208 28x28x1.4,Arm Cortex-M4,180,-,-,1024,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,161,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469BI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,LQFP 208 28x28x1.4,Arm Cortex-M4,180,-,-,2048,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,161,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,"105,85" +STM32F469IE,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,BGA 176,Arm Cortex-M4,180,-,-,512,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,131,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469IG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,180,-,-,1024,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,131,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469II,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,180,-,-,2048,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,131,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469NE,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M4,180,-,-,512,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,216,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469NG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M4,180,-,-,1024,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,161,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469NI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M4,180,-,-,2048,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,161,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,"105,85" +STM32F469VE,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,512,-,384,12,2,"24-bit downcounter,2xWDG,RTC",14,-,2,-,71,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,3,-,-,SAI,"Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469VG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,1024,-,384,12,2,"24-bit downcounter,2xWDG,RTC",14,-,2,-,71,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,3,-,-,SAI,"Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469VI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, FMC with SDRAM, Dual QSPI, TFT,MIPI-DSI",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,2048,-,384,12,2,"24-bit downcounter,2xWDG,RTC",14,-,2,-,71,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,3,-,-,SAI,"Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469ZE,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,180,-,-,512,-,384,12,2,"24-bit downcounter,2xWDG,RTC",20,-,2,-,106,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,3,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469ZG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,180,-,-,1024,-,384,12,2,"24-bit downcounter,2xWDG,RTC",20,-,2,-,106,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,3,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F469ZI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,180,-,-,2048,-,384,12,2,"24-bit downcounter,2xWDG,RTC",20,-,2,-,106,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,3,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC",-,-,-,1.7,3.6,140,282,-40,85 +STM32F479AG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI, HW crypto",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,180,-,-,1024,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Camera IF,FMC,Quad SPI,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,140,282,-40,85 +STM32F479AI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI, HW crypto",Active,"UFBGA 7X7X0.6 169L P 0.5 MM,WLCSP 168L DIE 434 12X14 P 0.4MM",Arm Cortex-M4,180,-,-,2048,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Camera IF,FMC,Quad SPI,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,140,282,-40,85 +STM32F479BG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI, HW crypto",Active,LQFP 208 28x28x1.4,Arm Cortex-M4,180,-,-,1024,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,161,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,140,282,-40,85 +STM32F479BI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI, HW crypto",Active,LQFP 208 28x28x1.4,Arm Cortex-M4,180,-,-,2048,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,161,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,140,282,-40,85 +STM32F479IG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI, HW crypto",Active,BGA 176,Arm Cortex-M4,180,-,-,1024,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,131,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,140,282,-40,85 +STM32F479II,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI, HW crypto",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M4,180,-,-,2048,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,131,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,140,282,-40,85 +STM32F479NG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI, HW crypto",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M4,180,-,-,1024,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,161,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,140,282,-40,85 +STM32F479NI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART accelerator, FMC with SDRAM, dual Quad SPI, TFT, MIPI-DSI, HW crypto",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M4,180,-,-,2048,-,384,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,161,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,6,2,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,140,282,-40,85 +STM32F479VG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,1024,-,384,12,2,"24-bit downcounter,2xWDG,RTC",14,-,2,-,71,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,3,-,-,SAI,"Camera IF,FMC,Quad SPI,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",-,-,1.7,3.6,140,282,-40,85 +STM32F479VI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,180,-,-,2048,-,384,12,2,"24-bit downcounter,2xWDG,RTC",14,-,2,-,71,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,3,-,-,SAI,"Camera IF,FMC,Quad SPI,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",-,-,1.7,3.6,140,282,-40,85 +STM32F479ZG,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,180,-,-,1024,-,384,12,2,"24-bit downcounter,2xWDG,RTC",20,-,2,-,106,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,3,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",-,-,1.7,3.6,140,282,-40,85 +STM32F479ZI,"High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,180,-,-,2048,-,384,12,2,"24-bit downcounter,2xWDG,RTC",20,-,2,-,106,"LCD TFT Controller up to 1024x728,MIPI DSI",2,-,3,4,2,USB OTG FS + USB OTG FS/HS,4,3,-,-,"Ethernet,SAI","Camera IF,FMC,Quad SPI,SD/MMC","AES,DES/TDES,HMAC,MD5,SHA",-,-,1.7,3.6,140,282,-40,85 +STM32F722IC,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,256,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,140,-,1,-,4,5,3,USB OTG FS + USB OTG FS/HS,4,-,-,-,SAI,"Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,-,-,-40,85 +STM32F722IE,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,140,-,1,-,4,5,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,-,-,-40,"105,85" +STM32F722RC,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,LQFP 64 10x10x1.4,Arm Cortex-M7,216,-,-,256,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,50,-,1,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,-,-,-,SAI,"Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,-,-,-40,85 +STM32F722RE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,LQFP 64 10x10x1.4,Arm Cortex-M7,216,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,50,-,1,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,-,-,-40,"105,85" +STM32F722VC,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,LQFP 100 14x14x1.4,Arm Cortex-M7,216,-,-,256,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,-,1,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,-,-,-,SAI,"Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,-,-,-40,85 +STM32F722VE,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,LQFP 100 14x14x1.4,Arm Cortex-M7,216,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,-,1,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,-,-,-40,"105,85" +STM32F722ZC,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,LQFP 144 20x20x1.4,Arm Cortex-M7,216,-,-,256,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,114,-,1,-,4,5,3,USB OTG FS + USB OTG FS/HS,4,-,-,-,SAI,"Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,-,-,-40,85 +STM32F722ZE,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,LQFP 144 20x20x1.4,Arm Cortex-M7,216,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,114,-,-,-,4,-,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,-,-,-40,"105,85" +STM32F723IC,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,256,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,138,-,1,-,4,-,3,USB OTG FS + USB OTG FS/HS,4,-,-,-,SAI,"Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,-,-,-40,85 +STM32F723IE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,138,-,1,-,4,5,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,-,-,-40,"105,85" +STM32F723VE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,WLCSP 100L DIE 452 P 0.4,Arm Cortex-M7,216,-,-,512,-,256,12,2,-,16,-,2,-,79,-,1,-,4,4,3,-,4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,-,-,-40,85 +STM32F723ZC,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,"LQFP 144 20x20x1.4,UFBGA 144 7x7x0.6",Arm Cortex-M7,216,-,-,256,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,112,-,1,-,4,5,3,USB OTG FS + USB OTG FS/HS,4,-,-,-,SAI,"Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,-,-,-40,85 +STM32F723ZE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,"LQFP 144 20x20x1.4,UFBGA 144 7x7x0.6",Arm Cortex-M7,216,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,112,-,1,-,4,5,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,-,-,-40,"105,85" +STM32F732IE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,140,-,1,-,4,5,3,USB OTG FS + USB OTG FS/HS,4,-,-,-,SAI,"Dual Quad SPI,FMC,SDIO",AES,true,-,1.7,3.6,-,-,-40,"105,85" +STM32F732RE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,LQFP 64 10x10x1.4,Arm Cortex-M7,216,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,50,-,1,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",AES,true,-,1.7,3.6,-,-,-40,"105,85" +STM32F732VE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,LQFP 100 14x14x1.4,Arm Cortex-M7,216,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,-,1,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",AES,true,-,1.7,3.6,-,-,-40,"105,85" +STM32F732ZE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,LQFP 144 20x20x1.4,Arm Cortex-M7,216,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,114,-,1,-,4,-,3,USB OTG FS + USB OTG FS/HS,4,-,-,-,SAI,"Dual Quad SPI,FMC,SDIO",AES,true,-,1.7,3.6,-,-,-40,"105,85" +STM32F733IE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,138,-,1,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",AES,true,-,1.7,3.6,-,-,-40,"105,85" +STM32F733VE,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,WLCSP 100L DIE 452 P 0.4,Arm Cortex-M7,216,-,-,512,-,256,12,2,-,16,-,2,-,79,-,1,-,4,4,3,-,4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",AES,true,-,1.7,3.6,-,-,-40,85 +STM32F733ZE,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,"LQFP 144 20x20x1.4,UFBGA 144 7x7x0.6",Arm Cortex-M7,216,-,-,512,-,256,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,112,-,1,-,4,5,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,SAI,"Dual Quad SPI,FMC,SDIO",AES,true,-,1.7,3.6,-,-,-40,"105,85" +STM32F745IG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,1024,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,140,-,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,85 +STM32F745VE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,"LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT",Arm Cortex-M7,216,-,-,512,-,320,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,-,2,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,85 +STM32F745VG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,"LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT",Arm Cortex-M7,216,-,-,1024,-,320,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,-,2,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,1.7,420,-40,85 +STM32F745ZE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,LQFP 144 20x20x1.4,Arm Cortex-M7,216,-,-,512,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,-,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,85 +STM32F745ZG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM",Active,LQFP 144 20x20x1.4,Arm Cortex-M7,216,-,-,1024,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,-,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,"105,85" +STM32F746BE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT",Active,LQFP 208 28x28x1.4,Arm Cortex-M7,216,-,-,512,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,85 +STM32F746BG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT",Active,LQFP 208 28x28x1.4,Arm Cortex-M7,216,-,-,1024,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,"105,85" +STM32F746IE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,512,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,140,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,85 +STM32F746IG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,1024,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,140,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,"105,85" +STM32F746NE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M7,216,-,-,512,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,85 +STM32F746VE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, TFT",Active,"LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT",Arm Cortex-M7,216,-,-,512,-,320,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,LCD TFT Controller up to 1024x728,2,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,85 +STM32F746VG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT",Active,"LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT",Arm Cortex-M7,216,-,-,1024,-,320,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,LCD TFT Controller up to 1024x728,2,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","DCMI,Dual Quad SPI,FMC,FSMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,"105,85" +STM32F746ZE,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT",Active,"LQFP 144 20x20x1.4,WLCSP 143L DIE 449 P 0.4 MM",Arm Cortex-M7,216,-,-,512,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,85 +STM32F746ZG,"High-performance and DSP with FPU ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT",Active,"LQFP 144 20x20x1.4,WLCSP 143L DIE 449 P 0.4 MM",Arm Cortex-M7,216,-,-,1024,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","DCMI,Dual Quad SPI,FMC,FSMC,SDIO",-,true,-,1.7,3.6,1.7,472,-40,"105,85" +STM32F756BG,"High-performance and DSP with FPU ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT",Active,LQFP 208 28x28x1.4,Arm Cortex-M7,216,-,-,1024,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Dual Quad SPI,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,472,-40,85 +STM32F756IG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,1024,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,140,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Dual Quad SPI,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,472,-40,85 +STM32F756NG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M7,216,-,-,1024,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Dual Quad SPI,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,472,-40,85 +STM32F756VG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT",Active,"LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT",Arm Cortex-M7,216,-,-,1024,-,320,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,LCD TFT Controller up to 1024x728,2,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Dual Quad SPI,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,472,-40,85 +STM32F756ZG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT",Active,"LQFP 144 20x20x1.4,WLCSP 143L DIE 449 P 0.4 MM",Arm Cortex-M7,216,-,-,1024,-,320,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Dual Quad SPI,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,1.7,472,-40,85 +STM32F765BG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM",Active,LQFP 208 28x28x1.4,Arm Cortex-M7,216,-,-,1024,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,-,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F765BI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM",Active,LQFP 208 28x28x1.4,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,-,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F765IG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,1024,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,140,-,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F765II,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,140,-,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,"105,85" +STM32F765NG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M7,216,-,-,1024,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,-,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,"105,85" +STM32F765VG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM",Active,"LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT",Arm Cortex-M7,216,-,-,1024,-,512,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,-,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,"105,85" +STM32F765VI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM",Active,"LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT",Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,-,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F765ZI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM",Active,LQFP 144 20x20x1.4,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,-,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,"105,85" +STM32F767BG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM",Active,LQFP 208 28x28x1.4,Arm Cortex-M7,216,-,-,1024,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F767BI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM",Active,LQFP 208 28x28x1.4,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F767IG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,1024,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,140,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F767II,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,140,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F767NG,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M7,216,-,-,1024,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F767NI,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,"105,85" +STM32F767VG,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM",Active,"LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT",Arm Cortex-M7,216,-,-,1024,-,512,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,LCD TFT Controller up to 1024x728,3,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,"105,85" +STM32F767VI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM",Active,"LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT",Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,LCD TFT Controller up to 1024x728,3,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F767ZG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM",Active,LQFP 144 20x20x1.4,Arm Cortex-M7,216,-,-,1024,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F767ZI,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM",Active,LQFP 144 20x20x1.4,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F769AI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM",Active,WLCSP 180L DIE 451 P 0.4 MM,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F769BG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM",Active,LQFP 208 28x28x1.4,Arm Cortex-M7,216,-,-,1024,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,"LCD TFT Controller up to 1024x728 ,MIPI DSI",3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F769BI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM",Active,LQFP 208 28x28x1.4,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F769IG,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM",Active,LQFP 176 24x24x1.4,Arm Cortex-M7,216,-,-,1024,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,140,"LCD TFT Controller up to 1024x728 ,MIPI DSI",3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F769II,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM",Active,LQFP 176 24x24x1.4,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,140,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F769NG,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M7,216,-,-,1024,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,"LCD TFT Controller up to 1024x728 ,MIPI DSI",3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F769NI,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.7,3.6,2.5,420,-40,85 +STM32F777BI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, JPEG codec, DFSDM",Active,LQFP 208 28x28x1.4,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,2.5,420,-40,85 +STM32F777II,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, JPEG codec, DFSDM",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,140,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,2.5,420,-40,"105,85" +STM32F777NI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, JPEG codec, DFSDM",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,2.5,420,-40,"105,85" +STM32F777VI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, JPEG codec, DFSDM",Active,"LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT",Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",16,-,2,-,82,LCD TFT Controller up to 1024x728,3,-,4,4,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,2.5,420,-40,85 +STM32F777ZI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, JPEG codec, DFSDM",Active,LQFP 144 20x20x1.4,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,LCD TFT Controller up to 1024x728,3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,2.5,420,-40,85 +STM32F778AI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM, Vreg_OFF",Active,WLCSP 180L DIE 451 P 0.4 MM,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,"LCD TFT Controller up to 1024x728 ,MIPI DSI",3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,2.5,420,-40,85 +STM32F779AI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM",Active,WLCSP 180L DIE 451 P 0.4 MM,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,114,"LCD TFT Controller up to 1024x728 ,MIPI DSI",3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,2.5,420,-40,85 +STM32F779BI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM",Active,LQFP 208 28x28x1.4,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,"LCD TFT Controller up to 1024x728 ,MIPI DSI",3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,2.5,420,-40,85 +STM32F779II,"High-performance and DSP with FPU, Arm Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM",Active,LQFP 176 24x24x1.4,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,140,"LCD TFT Controller up to 1024x728 ,MIPI DSI",3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,2.5,420,-40,85 +STM32F779NI,"High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM",Active,TFBGA 13X13X1.2 216L P 0.8 MM,Arm Cortex-M7,216,-,-,2048,-,512,12,2,"24-bit downcounter,2xWDG,RTC",24,-,2,-,168,"LCD TFT Controller up to 1024x728 ,MIPI DSI",3,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,4,-,-,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.7,3.6,2.5,420,-40,85 +STM32H743AI,"High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M7,400,-,-,2048,-,1024,18,2,"24-bit downcounter,2xWDG,HR Timer,LP timer,RTC",-,20,2,2,131,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO",-,true,-,1.62,3.6,7,278,-40,85 +STM32H743BI,"High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals",Active,LQFP 208 28x28x1.4,Arm Cortex-M7,400,-,-,2048,-,1024,18,2,"24-bit downcounter,2xWDG,HR Timer,LP timer,RTC",-,20,2,2,168,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO",-,true,-,1.62,3.6,7,278,-40,85 +STM32H743II,"High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,400,-,-,2048,-,1024,18,2,"24-bit downcounter,2xWDG,HR Timer,LP timer,RTC",-,20,2,2,140,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO",-,true,-,1.62,3.6,7,278,-40,85 +STM32H743VI,"High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals",Active,"LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT",Arm Cortex-M7,400,-,-,2048,-,1024,18,2,"24-bit downcounter,2xWDG,HR Timer,LP timer,RTC",-,20,2,2,82,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO",-,true,-,1.71,3.6,7,278,"-40,40",85 +STM32H743XI,"High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals",Active,TFBGA 14X14X1.2 P 0.8 240+25L,Arm Cortex-M7,400,-,-,2048,-,1024,18,2,"24-bit downcounter,2xWDG,HR Timer,LP timer,RTC",-,20,2,2,168,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO",-,true,-,1.62,3.6,7,278,-40,85 +STM32H743ZI,"High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals",Active,LQFP 144 20x20x1.4,Arm Cortex-M7,400,-,-,2048,-,1024,18,2,LP timer,-,20,2,2,114,LCD TFT Controller up to 1024x728,2,-,4,6,3,USB OTG FS + USB OTG FS/HS,4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO",-,true,-,1.62,3.6,7,278,-40,85 +STM32H753AI,"High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals including a Crypto accelerator",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M7,400,-,-,2048,-,1024,18,2,"24-bit downcounter,2xWDG,HR Timer,RTC",-,20,2,2,131,-,2,-,4,6,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO",-,true,-,1.62,3.6,-,-,-40,85 +STM32H753BI,"High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals including a Crypto accelerator",Active,LQFP 208 28x28x1.4,Arm Cortex-M7,400,-,-,2048,-,1024,18,2,"24-bit downcounter,2xWDG,HR Timer,RTC",-,20,-,2,168,LCD TFT Controller up to 1024x728,2,-,4,6,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.62,3.6,-,-,-40,85 +STM32H753II,"High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals including a Crypto accelerator",Active,"BGA 176,LQFP 176 24x24x1.4",Arm Cortex-M7,400,-,-,2048,-,1024,18,2,"24-bit downcounter,2xWDG,HR Timer,RTC",-,20,2,2,140,LCD TFT Controller up to 1024x728,2,-,4,6,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.62,3.6,-,-,-40,85 +STM32H753VI,"High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals including a Crypto accelerator",Active,"LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT",Arm Cortex-M7,400,-,-,2048,-,1024,18,2,"24-bit downcounter,2xWDG,HR Timer,RTC",-,20,2,2,82,LCD TFT Controller up to 1024x728,2,-,4,6,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.71,3.6,-,-,-40,85 +STM32H753XI,"High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals including a Crypto accelerator",Active,TFBGA 14X14X1.2 P 0.8 240+25L,Arm Cortex-M7,400,-,-,2048,-,1024,18,2,"24-bit downcounter,2xWDG,HR Timer,RTC",-,20,2,2,168,LCD TFT Controller up to 1024x728,2,-,4,6,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.62,3.6,-,-,-40,85 +STM32H753ZI,"High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals including a Crypto accelerator",Active,LQFP 144 20x20x1.4,Arm Cortex-M7,400,-,-,2048,-,1024,18,2,"24-bit downcounter,2xWDG,HR Timer,RTC",-,20,2,2,114,-,2,-,4,6,3,"USB OTG FS,USB OTG FS + USB OTG FS/HS",4,5,-,2,"Ethernet,HDMI CEC,S/PDIF,SAI","Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO","AES,DES/TDES,HMAC,MD5,SHA",true,-,1.62,3.6,-,-,-40,85 diff --git a/stm32/csv/STM32 Mainstream MCUs.csv b/stm32/csv/STM32 Mainstream MCUs.csv new file mode 100644 index 0000000..0175808 --- /dev/null +++ b/stm32/csv/STM32 Mainstream MCUs.csv @@ -0,0 +1,237 @@ +Part Number,General Description,Marketing Status,Package,Core,Operating Frequency (MHz) (Processor speed),Co-Processor type,Co-Processor frequency (MHz) max,FLASH Size (kB) (Prog),Data E2PROM (B) nom,RAM Size (kB),Timers (16 bit) typ,Timers (32 bit) typ,Other timer functions,A/D Converters (12-bit channels),A/D Converters (16-bit channels),D/A Converters (12 bit) typ,Comparator,I/Os (High Current),Display controller,CAN typ,CAN FD typ,I2C typ,SPI typ,I2S typ,USB Type,USART typ,UART typ,Connectivity supported,Integrated op-amps,Additional Serial Interfaces,Parallel Interfaces,Crypto-HASH,TRNG typ,SMPS,Supply Voltage (V) min,Supply Voltage (V) max,Supply Current (µA) (Lowest power mode) typ,Supply Current (µA) (Run mode (per Mhz)) typ,Operating Temperature (°C) min,Operating Temperature (°C) max +STM32F031K6,"Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0,48,-,-,32,-,4,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,27,-,-,-,1,1,1,-,1,-,-,-,-,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F334K6,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 32-Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer",Active,LQFP 32 7x7x1.4,Arm Cortex-M4,72,-,-,32,-,16,7,1,"2xWDG,RTC,SysTick,hr timer (10x217ps)",9,-,3,2,25,-,1,-,1,1,-,-,2,-,-,1,-,-,-,-,-,2,3.6,1,420,-40,"105,85" +STM32F030C6,"Mainstream ARM Cortex-M0 Value line MCU with 32 Kbytes Flash, 48 MHz CPU",Active,LQFP 48 7x7x1.4,Arm Cortex-M0,48,-,-,32,-,4,5,-,"24-bit downcounter,2xWDG,RTC",10,-,-,-,39,-,-,-,1,1,-,-,1,-,-,-,-,-,-,-,-,2.4,3.6,3.4,250,-40,85 +STM32F030C8,"Mainstream ARM Cortex-M0 Value line MCU with 64 Kbytes Flash, 48 MHz CPU",Active,LQFP 48 7x7x1.4,Arm Cortex-M0,48,-,-,64,-,8,7,-,"24-bit downcounter,2xWDG,RTC",10,-,-,-,39,-,-,-,2,2,-,-,2,-,-,-,-,-,-,-,-,2.4,3.6,3.4,250,-40,85 +STM32F030CC,"Mainstream ARM Cortex-M0 Value line MCU with 256 Kbytes Flash, 48 MHz CPU",Active,LQFP 48 7x7x1.4,Arm Cortex-M0,48,-,-,256,-,32,8,-,"24-bit downcounter,2xWDG,RTC",10,-,-,-,38,-,-,-,2,2,-,-,6,-,-,-,-,-,-,-,-,2.4,3.6,1.8,306,-40,85 +STM32F030F4,"Mainstream ARM Cortex-M0 Value line MCU with 16 Kbytes Flash, 48 MHz CPU",Active,TSSOP 20,Arm Cortex-M0,48,-,-,16,-,4,5,-,"24-bit downcounter,2xWDG,RTC",9,-,-,-,15,-,-,-,1,1,-,-,1,-,-,-,-,-,-,-,-,2.4,3.6,3.4,250,-40,85 +STM32F030K6,"Mainstream ARM Cortex-M0 Value line MCU with 32 Kbytes Flash, 48 MHz CPU",Active,LQFP 32 7x7x1.4,Arm Cortex-M0,48,-,-,32,-,4,5,-,"24-bit downcounter,2xWDG,RTC",10,-,-,-,26,-,-,-,1,1,-,-,1,-,-,-,-,-,-,-,-,2.4,3.6,3.4,250,-40,85 +STM32F030R8,"Mainstream ARM Cortex-M0 Value line MCU with 64 Kbytes Flash, 48 MHz CPU",Active,LQFP 64 10x10x1.4,Arm Cortex-M0,48,-,-,64,-,8,7,-,"24-bit downcounter,2xWDG,RTC",16,-,-,-,55,-,-,-,2,2,-,-,2,-,-,-,-,-,-,-,-,2.4,3.6,3.4,250,-40,85 +STM32F030RC,"Mainstream ARM Cortex-M0 Value line MCU with 256 Kbytes Flash, 48 MHz CPU",Active,LQFP 64 10x10x1.4,Arm Cortex-M0,48,-,-,256,-,32,8,-,"24-bit downcounter,2xWDG,RTC",16,-,-,-,52,-,-,-,2,2,-,-,6,-,-,-,-,-,-,-,-,2.4,3.6,1.8,306,-40,85 +STM32F031C4,"Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU, motor control",Active,LQFP 48 7x7x1.4,Arm Cortex-M0,48,-,-,16,-,4,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,39,-,-,-,1,1,1,-,1,-,-,-,-,-,-,-,-,2,3.6,1.7,250,-40,85 +STM32F031C6,"Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control",Active,LQFP 48 7x7x1.4,Arm Cortex-M0,48,-,-,32,-,4,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,39,-,-,-,1,1,1,-,1,-,-,-,-,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F031E6,"Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control",Active,WLCSP 25L P 0.4 MM DIE 444,Arm Cortex-M0,48,-,-,32,-,4,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,20,-,-,-,1,1,1,-,1,-,-,-,-,-,-,-,-,2,3.6,1.7,250,-40,85 +STM32F031F4,"Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU",Active,TSSOP 20,Arm Cortex-M0,48,-,-,16,-,4,5,1,"24-bit downcounter,2xWDG,RTC",9,-,-,-,15,-,-,-,1,1,1,-,1,-,-,-,-,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F031F6,"Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control",Active,TSSOP 20,Arm Cortex-M0,48,-,-,32,-,4,5,1,"24-bit downcounter,2xWDG,RTC",9,-,-,-,15,-,-,-,1,1,1,-,1,-,-,-,-,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F031G4,"Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU",Active,UFQFPN 28 4x4x0.55,Arm Cortex-M0,48,-,-,16,-,4,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,23,-,-,-,1,1,1,-,1,-,-,-,-,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F031G6,"Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control",Active,UFQFPN 28 4x4x0.55,Arm Cortex-M0,48,-,-,32,-,4,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,23,-,-,-,1,1,1,-,1,-,-,-,-,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F031K4,"Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU",Active,UFQFPN 32 5x5x0.55,Arm Cortex-M0,48,-,-,16,-,4,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,27,-,-,-,1,1,1,-,1,-,-,-,-,-,-,-,-,2,3.6,1.7,250,-40,85 +STM32F038C6,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,LQFP 48 7x7x1.4,Arm Cortex-M0,48,-,-,32,-,4,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,38,-,-,-,1,1,1,-,1,-,-,-,-,-,-,-,-,1.65,1.95,1.7,250,-40,"105,85" +STM32F038E6,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,WLCSP 25L P 0.4 MM DIE 444,Arm Cortex-M0,48,-,-,32,-,4,5,1,"24-bit downcounter,2xWDG,RTC",9,-,-,-,20,-,-,-,1,1,1,-,1,-,-,-,-,-,-,-,-,1.65,1.95,1.7,250,-40,85 +STM32F038F6,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,TSSOP 20,Arm Cortex-M0,48,-,-,32,-,4,5,1,"24-bit downcounter,2xWDG,RTC",8,-,-,-,14,-,-,-,1,1,1,-,1,-,-,-,-,-,-,-,-,1.65,1.95,1.7,250,-40,85 +STM32F038G6,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,UFQFPN 28 4x4x0.55,Arm Cortex-M0,48,-,-,32,-,4,5,1,"24-bit downcounter,2xWDG,RTC",9,-,-,-,22,-,-,-,1,1,1,-,1,-,-,-,-,-,-,-,-,1.65,1.95,1.7,250,-40,85 +STM32F038K6,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,UFQFPN 32 5x5x0.55,Arm Cortex-M0,48,-,-,32,-,4,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,26,-,-,-,1,1,1,-,1,-,-,-,-,-,-,-,-,1.65,1.95,1.7,250,-40,85 +STM32F042C4,"Mainstream ARM Cortex-M0 USB line MCU with 16 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M0,48,-,-,16,-,6,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,38,-,1,-,1,2,1,USB Device,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,85 +STM32F042C6,"Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M0,48,-,-,32,-,6,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,38,-,1,-,1,2,1,USB Device,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F042F4,"Mainstream ARM Cortex-M0 USB line MCU with 16 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,TSSOP 20,Arm Cortex-M0,48,-,-,16,-,6,5,1,"24-bit downcounter,2xWDG,RTC",9,-,-,-,16,-,1,-,1,1,1,USB Device,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,85 +STM32F042F6,"Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,TSSOP 20,Arm Cortex-M0,48,-,-,32,-,6,5,1,"24-bit downcounter,2xWDG,RTC",9,-,-,-,16,-,1,-,1,1,1,USB Device,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F042G4,"Mainstream ARM Cortex-M0 USB line MCU with 16 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,UFQFPN 28 4x4x0.55,Arm Cortex-M0,48,-,-,16,-,6,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,24,-,1,-,1,1,1,USB Device,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,85 +STM32F042G6,"Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,UFQFPN 28 4x4x0.55,Arm Cortex-M0,48,-,-,32,-,6,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,24,-,1,-,1,1,1,USB Device,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,85 +STM32F042K4,"Mainstream ARM Cortex-M0 USB line MCU with 16 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0,48,-,-,16,-,6,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,28,-,1,-,1,1,1,USB Device,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,85 +STM32F042K6,"Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0,48,-,-,32,-,6,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,28,-,1,-,1,1,1,USB Device,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F042T6,"Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,WLCSP 36L DIE 445 P 0.4 MM,Arm Cortex-M0,48,-,-,32,-,6,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,30,-,1,-,1,1,1,USB Device,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,85 +STM32F048C6,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M0,48,-,-,32,-,6,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,38,-,1,-,1,2,1,USB Device,2,-,-,-,HDMI CEC,-,-,-,-,1.65,1.95,1.7,250,-40,85 +STM32F048G6,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,UFQFPN 28 4x4x0.55,Arm Cortex-M0,48,-,-,32,-,6,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,24,-,1,-,1,1,1,USB Device,2,-,-,-,HDMI CEC,-,-,-,-,1.65,1.95,1.7,250,-40,85 +STM32F048T6,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,WLCSP 36L DIE 445 P 0.4 MM,Arm Cortex-M0,48,-,-,32,-,6,5,1,"24-bit downcounter,2xWDG,RTC",10,-,-,-,30,-,1,-,1,1,1,USB Device,2,-,-,-,HDMI CEC,-,-,-,-,1.65,1.95,1.7,250,-40,85 +STM32F051C4,"Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU, motor control and CEC functions",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M0,48,-,-,16,-,8,7,1,"24-bit downcounter,2xWDG,RTC",10,-,1,2,39,-,-,-,1,1,1,-,1,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,85 +STM32F051C6,"Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control and CEC functions",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M0,48,-,-,32,-,8,7,1,"24-bit downcounter,2xWDG,RTC",10,-,1,2,39,-,-,-,1,1,1,-,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F051C8,"Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU, motor control and CEC functions",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M0,48,-,-,64,-,8,7,1,"24-bit downcounter,2xWDG,RTC",10,-,1,2,39,-,-,-,2,2,1,-,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F051K4,"Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU, motor control and CEC functions",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0,48,-,-,16,-,8,7,1,"24-bit downcounter,2xWDG,RTC",10,-,1,2,27,-,-,-,1,1,1,-,1,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F051K6,"Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control and CEC functions",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0,48,-,-,32,-,8,7,1,"24-bit downcounter,2xWDG,RTC",10,-,1,2,27,-,-,-,1,1,1,-,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F051K8,"Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU, motor control and CEC functions",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0,48,-,-,64,-,8,7,1,"24-bit downcounter,2xWDG,RTC",10,-,1,2,27,-,-,-,1,1,1,-,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F051R4,"Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU, motor control and CEC functions",Active,LQFP 64 10x10x1.4,Arm Cortex-M0,48,-,-,16,-,8,7,1,"24-bit downcounter,2xWDG,RTC",16,-,1,2,55,-,-,-,1,1,1,-,1,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,85 +STM32F051R6,"Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control and CEC functions",Active,LQFP 64 10x10x1.4,Arm Cortex-M0,48,-,-,32,-,8,7,1,"24-bit downcounter,2xWDG,RTC",16,-,1,2,55,-,-,-,1,1,1,-,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F051R8,"Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU, motor control and CEC functions",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM",Arm Cortex-M0,48,-,-,64,-,8,7,1,"24-bit downcounter,2xWDG,RTC",16,-,1,2,55,-,-,-,2,2,1,-,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,"105,85" +STM32F051T8,"Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU, motor control and CEC functions",Active,WLCSP 36L P 0.4 MM DIE 440,Arm Cortex-M0,48,-,-,64,-,8,7,1,"24-bit downcounter,2xWDG,RTC",10,-,1,2,29,-,-,-,1,1,1,-,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,250,-40,85 +STM32F058C8,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M0,48,-,-,64,-,8,7,1,"24-bit downcounter,2xWDG,RTC",10,-,-,2,39,-,-,-,2,2,1,-,2,-,-,-,HDMI CEC,-,-,-,-,1.65,1.95,1.7,250,-40,85 +STM32F058R8,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM",Arm Cortex-M0,48,-,-,64,-,8,7,1,"24-bit downcounter,2xWDG,RTC",16,-,-,2,55,-,-,-,2,2,1,-,2,-,-,-,HDMI CEC,-,-,-,-,1.65,1.95,1.7,250,-40,"105,85" +STM32F058T8,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions",Active,WLCSP 36L P 0.4 MM DIE 440,Arm Cortex-M0,48,-,-,64,-,8,7,1,"24-bit downcounter,2xWDG,RTC",10,-,-,2,28,-,-,-,1,1,1,-,2,-,-,-,HDMI CEC,-,-,-,-,1.65,1.95,1.7,250,-40,85 +STM32F070C6,"Mainstream ARM Cortex-M0 Value line MCU with up to 32 Kbytes Flash, 48 MHz CPU, USB",Active,LQFP 48 7x7x1.4,Arm Cortex-M0,48,-,-,32,-,6,5,-,"24-bit downcounter,2xWDG,RTC",10,-,-,-,37,-,-,-,1,1,-,USB Device,2,-,-,-,-,-,-,-,-,2.4,3.6,1.7,264,-40,85 +STM32F070CB,"Mainstream ARM Cortex-M0 Value line MCU with 128 Kbytes Flash, 48 MHz CPU, USB",Active,LQFP 48 7x7x1.4,Arm Cortex-M0,48,-,-,128,-,16,8,-,"24-bit downcounter,2xWDG,RTC",10,-,-,-,37,-,-,-,2,2,-,USB Device,4,-,-,-,-,-,-,-,-,2.4,3.6,1.8,273,-40,85 +STM32F070F6,"Mainstream ARM Cortex-M0 Value line MCU with up to 32 Kbytes Flash, 48 MHz CPU, USB",Active,TSSOP 20,Arm Cortex-M0,48,-,-,32,-,6,5,-,"24-bit downcounter,2xWDG,RTC",9,-,-,-,15,-,-,-,1,1,-,USB Device,2,-,-,-,-,-,-,-,-,2.4,3.6,1.7,264,-40,85 +STM32F070RB,"Mainstream ARM Cortex-M0 Value line MCU with 128 Kbytes Flash, 48 MHz CPU, USB",Active,LQFP 64 10x10x1.4,Arm Cortex-M0,48,-,-,128,-,16,8,-,"24-bit downcounter,2xWDG,RTC",16,-,-,-,51,-,-,-,2,2,-,USB Device,4,-,-,-,-,-,-,-,-,2.4,3.6,1.8,273,-40,85 +STM32F071C8,"Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M0,48,-,-,64,-,16,8,1,"24-bit downcounter,2xWDG,RTC",10,-,2,2,37,-,-,-,2,2,2,-,4,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,260,-40,85 +STM32F071CB,"Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU and CEC functions",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 448 P 0.4 MM",Arm Cortex-M0,48,-,-,128,-,16,8,1,"24-bit downcounter,2xWDG,RTC",10,-,2,2,37,-,-,-,2,2,2,-,4,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,260,-40,"105,85" +STM32F071RB,"Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU and CEC functions",Active,LQFP 64 10x10x1.4,Arm Cortex-M0,48,-,-,128,-,16,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,51,-,-,-,2,2,2,-,4,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,260,-40,"105,85" +STM32F071V8,"Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M0,48,-,-,64,-,16,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,87,-,-,-,2,2,2,-,4,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,260,-40,"105,85" +STM32F071VB,"Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU and CEC functions",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M0,48,-,-,128,-,16,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,87,-,-,-,2,2,2,-,4,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,260,-40,85 +STM32F072C8,"Mainstream ARM Cortex-M0 USB line MCU with 64 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M0,48,-,-,64,-,16,8,1,"24-bit downcounter,2xWDG,RTC",10,-,2,2,37,-,1,-,2,2,2,USB Device,4,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,260,-40,"105,85" +STM32F072R8,"Mainstream ARM Cortex-M0 USB line MCU with 64 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,LQFP 64 10x10x1.4,Arm Cortex-M0,48,-,-,64,-,16,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,51,-,1,-,2,2,2,USB Device,4,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,260,-40,85 +STM32F072RB,"Mainstream ARM Cortex-M0 USB line MCU with 128 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM",Arm Cortex-M0,48,-,-,128,-,16,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,51,-,1,-,2,2,2,USB Device,4,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,260,-40,"105,85" +STM32F072V8,"Mainstream ARM Cortex-M0 USB line MCU with 64 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M0,48,-,-,64,-,16,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,87,-,1,-,2,2,2,USB Device,4,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,260,-40,85 +STM32F072VB,"Mainstream ARM Cortex-M0 USB line MCU with 128 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M0,48,-,-,128,-,16,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,87,-,1,-,2,2,2,USB Device,4,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,260,-40,85 +STM32F078CB,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 128 Kbytes Flash, 48 MHz CPU, USB and CEC functions",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 448 P 0.4 MM",Arm Cortex-M0,48,-,-,128,-,16,8,1,"24-bit downcounter,2xWDG,RTC",10,-,2,2,36,-,1,-,2,2,2,USB Device,4,-,-,-,HDMI CEC,-,-,-,-,1.65,1.95,1.8,260,-40,85 +STM32F078RB,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 128 Kbytes Flash, 48 MHz CPU, USB and CEC functions",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM",Arm Cortex-M0,48,-,-,128,-,16,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,50,-,1,-,2,2,2,USB Device,4,-,-,-,HDMI CEC,-,-,-,-,1.65,1.95,1.8,260,-40,"105,85" +STM32F078VB,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 128 Kbytes Flash, 48 MHz CPU, USB and CEC functions",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M0,48,-,-,128,-,16,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,86,-,1,-,2,2,2,USB Device,4,-,-,-,HDMI CEC,-,-,-,-,1.65,1.95,1.8,260,-40,85 +STM32F091CB,"Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU, CAN and CEC functions",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M0,48,-,-,128,-,32,8,1,"24-bit downcounter,2xWDG,RTC",10,-,2,2,38,-,1,-,2,2,2,-,6,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,306,-40,"105,85" +STM32F091CC,"Mainstream ARM Cortex-M0 Access line MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M0,48,-,-,256,-,32,8,1,"24-bit downcounter,2xWDG,IR Timer,RTC",10,-,2,2,38,-,1,-,2,2,2,-,6,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,306,-40,"105,85" +STM32F091RB,"Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU, CAN and CEC functions",Active,LQFP 64 10x10x1.4,Arm Cortex-M0,48,-,-,128,-,32,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,52,-,1,-,2,2,2,-,8,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,306,-40,85 +STM32F091RC,"Mainstream ARM Cortex-M0 Access line MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 442 P 0.4 MM",Arm Cortex-M0,48,-,-,256,-,32,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,52,-,1,-,2,2,2,-,8,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,306,-40,"105,85" +STM32F091VB,"Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU, CAN and CEC functions",Active,LQFP 100 14x14x1.4,Arm Cortex-M0,48,-,-,128,-,32,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,88,-,1,-,2,2,2,-,8,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,306,-40,"105,85" +STM32F091VC,"Mainstream ARM Cortex-M0 Access line MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M0,48,-,-,256,-,32,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,88,-,1,-,2,2,2,-,8,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.8,306,-40,"105,85" +STM32F098CC,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M0,48,-,-,256,-,32,8,1,"24-bit downcounter,2xWDG,RTC",10,-,2,2,37,-,1,-,2,2,2,-,8,-,-,-,HDMI CEC,-,-,-,-,1.65,1.95,1.8,306,-40,"105,85" +STM32F098RC,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 442 P 0.4 MM",Arm Cortex-M0,48,-,-,256,-,32,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,51,-,1,-,2,2,2,-,8,-,-,-,HDMI CEC,-,-,-,-,1.65,1.95,1.8,306,-40,85 +STM32F098VC,"Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M0,48,-,-,256,-,32,8,1,"24-bit downcounter,2xWDG,RTC",16,-,2,2,87,-,1,-,2,2,2,-,8,-,-,-,HDMI CEC,-,-,-,-,1.65,1.95,1.8,306,-40,85 +STM32F100C4,"Mainstream Value line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,LQFP 48 7x7x1.4,Arm Cortex-M3,24,-,-,16,-,4,6,-,"2 x WDG,24-bit down counter,RTC",10,-,2,-,37,-,-,-,1,1,-,-,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,358,-40,"105,85" +STM32F100C6,"Mainstream Value line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,LQFP 48 7x7x1.4,Arm Cortex-M3,24,-,-,32,-,4,6,-,"2 x WDG,24-bit down counter,RTC",10,-,2,0,37,-,-,-,1,1,-,-,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,358,-40,"105,85" +STM32F100C8,"Mainstream Value line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,LQFP 48 7x7x1.4,Arm Cortex-M3,24,-,-,64,-,8,7,-,"2 x WDG,24-bit down counter,RTC",10,-,2,0,37,-,-,-,2,2,-,-,3,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,358,-40,"105,85" +STM32F100CB,"Mainstream Value line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,LQFP 48 7x7x1.4,Arm Cortex-M3,24,-,-,128,-,8,7,-,"2 x WDG,24-bit down counter,RTC",10,-,2,0,37,-,-,-,2,2,-,-,3,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,358,-40,"105,85" +STM32F100R4,"Mainstream Value line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,24,-,-,16,-,4,6,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,-,-,1,1,-,-,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,358,-40,85 +STM32F100R6,"Mainstream Value line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,24,-,-,32,-,4,6,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,-,-,1,1,-,-,2,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,358,-40,85 +STM32F100R8,"Mainstream Value line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,24,-,-,64,-,8,7,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,-,-,2,2,-,-,3,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,358,-40,"105,85" +STM32F100RB,"Mainstream Value line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,24,-,-,128,-,8,7,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,-,-,2,2,-,-,3,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,358,-40,85 +STM32F100RC,"Mainstream Value line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,24,-,-,256,-,24,11,-,"2 x WDG,24-bit down counter,RTC",16,-,2,-,51,-,-,-,2,3,-,-,3,2,-,-,HDMI CEC,-,-,-,-,2,3.6,2.2,396,-40,85 +STM32F100RD,"Mainstream Value line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,24,-,-,384,-,32,11,-,"2 x WDG,24-bit down counter,RTC",16,-,2,-,51,-,-,-,2,3,-,-,5,-,-,-,HDMI CEC,-,-,-,-,2,3.6,2.2,396,-40,85 +STM32F100RE,"Mainstream Value line, ARM Cortex-M3 MCU with 512 Kbytes, 24 MHz CPU, motor control and CEC functions",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,24,-,-,512,-,32,11,-,"2 x WDG,24-bit down counter,RTC",16,-,2,-,51,-,-,-,2,3,-,-,5,-,-,-,HDMI CEC,-,-,-,-,2,3.6,2.2,396,-40,"105,85" +STM32F100V8,"Mainstream Value line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,24,-,-,64,-,8,7,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,-,-,2,2,-,-,3,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,358,-40,"105,85" +STM32F100VB,"Mainstream Value line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,24,-,-,128,-,8,7,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,-,-,2,2,-,-,3,-,-,-,HDMI CEC,-,-,-,-,2,3.6,1.7,358,-40,"105,85" +STM32F100VC,"Mainstream value line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,24,-,-,256,-,24,11,-,"2 x WDG,24-bit down counter,RTC",16,-,2,-,80,-,-,-,2,3,-,-,5,-,-,-,HDMI CEC,-,-,-,-,2,3.6,2.2,396,-40,85 +STM32F100VD,"Mainstream Value line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,24,-,-,384,-,32,11,-,"2 x WDG,24-bit down counter,RTC",16,-,2,-,80,-,-,-,2,3,-,-,5,-,-,-,HDMI CEC,-,-,-,-,2,3.6,2.2,396,-40,"105,85" +STM32F100VE,"Mainstream Value line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,24,-,-,512,-,32,11,-,"2 x WDG,24-bit down counter,RTC",16,-,2,-,80,-,-,-,2,3,-,-,5,-,-,-,HDMI CEC,-,-,-,-,2,3.6,2.2,396,-40,"105,85" +STM32F100ZC,"Mainstream Value line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,24,-,-,256,-,24,11,-,"2 x WDG,24-bit down counter,RTC",16,-,2,-,112,-,-,-,2,3,-,-,5,-,-,-,HDMI CEC,-,-,-,-,2,3.6,2.2,396,-40,85 +STM32F100ZD,"Mainstream Value line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,24,-,-,384,-,32,11,-,"2 x WDG,24-bit down counter,RTC",16,-,2,-,112,-,-,-,2,3,-,-,5,-,-,-,HDMI CEC,-,-,-,-,2,3.6,2.2,396,-40,85 +STM32F100ZE,"Mainstream Value line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 24 MHz CPU, motor control and CEC functions",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,24,-,-,512,-,32,11,-,"2 x WDG,24-bit down counter,RTC",16,-,2,-,112,-,-,-,2,3,-,-,5,-,-,-,HDMI CEC,-,-,-,-,2,3.6,2.2,396,-40,"105,85" +STM32F101C4,"Mainstream Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 36 MHz CPU",Active,LQFP 48 7x7x1.4,Arm Cortex-M3,36,-,-,16,-,4,2,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,36,-,-,-,1,1,-,-,2,-,-,-,-,-,-,-,-,2,3.6,1.7,363,-40,85 +STM32F101C6,"Mainstream Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 36 MHz CPU",Active,LQFP 48 7x7x1.4,Arm Cortex-M3,36,-,-,32,-,6,2,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,36,-,-,-,1,1,-,-,2,-,-,-,-,-,-,-,-,2,3.6,1.7,363,-40,85 +STM32F101C8,"Mainstream Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 36 MHz CPU",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,36,-,-,64,-,10,3,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,36,-,-,-,2,2,-,-,3,-,-,-,-,-,-,-,-,2,3.6,1.7,363,-40,85 +STM32F101CB,"Mainstream Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 36 MHz CPU",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,36,-,-,128,-,16,3,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,36,-,-,-,2,2,-,-,3,-,-,-,-,-,-,-,-,2,3.6,1.7,363,-40,85 +STM32F101R4,"Mainstream Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 36 MHz CPU",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,36,-,-,16,-,4,2,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,51,-,-,-,1,1,-,-,2,-,-,-,-,-,-,-,-,2,3.6,1.7,363,-40,85 +STM32F101R6,"Mainstream Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 36 MHz CPU",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,36,-,-,32,-,6,2,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,51,-,-,-,1,1,-,-,2,-,-,-,-,-,-,-,-,2,3.6,1.7,363,-40,85 +STM32F101R8,"Mainstream Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 36 MHz CPU",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,36,-,-,64,-,10,3,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,51,-,-,-,2,2,-,-,3,-,-,-,-,-,-,-,-,2,3.6,1.7,391,-40,85 +STM32F101RB,"Mainstream Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 36 MHz CPU",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,36,-,-,128,-,16,3,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,51,-,-,-,2,2,-,-,3,-,-,-,-,-,-,-,-,2,3.6,1.7,391,-40,85 +STM32F101RC,"Mainstream Access line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 36 MHz CPU",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,36,-,-,256,-,32,6,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F101RD,"Mainstream Access line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 36 MHz CPU",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,36,-,-,384,-,48,6,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F101RE,"Mainstream Access line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 36 MHz CPU",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,36,-,-,512,-,48,6,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F101RF,"Mainstream Access line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 36 MHz CPU",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,36,-,-,768,-,80,12,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F101RG,"Mainstream Access line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 36 MHz CPU",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,36,-,-,1024,-,80,12,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F101T4,"Mainstream Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 36 MHz CPU",Active,VFQFPN 36 6x6x1-0,Arm Cortex-M3,36,-,-,16,-,4,2,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,26,-,-,-,1,1,-,-,2,-,-,-,-,-,-,-,-,2,3.6,1.7,363,-40,85 +STM32F101T6,"Mainstream Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 36 MHz CPU",Active,VFQFPN 36 6x6x1-0,Arm Cortex-M3,36,-,-,32,-,6,2,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,26,-,-,-,1,1,-,-,2,-,-,-,-,-,-,-,-,2,3.6,1.7,363,-40,85 +STM32F101T8,"Mainstream Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 36 MHz CPU",Active,VFQFPN 36 6x6x1-0,Arm Cortex-M3,36,-,-,64,-,10,3,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,26,-,-,-,1,1,-,-,2,-,-,-,-,-,-,-,-,2,3.6,1.7,391,-40,85 +STM32F101TB,"Mainstream Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 36 MHz CPU",Active,VFQFPN 36 6x6x1-0,Arm Cortex-M3,36,-,-,128,-,16,3,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,26,-,-,-,1,1,-,-,2,-,-,-,-,-,-,-,-,2,3.6,1.7,391,-40,85 +STM32F101V8,"Mainstream Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 36 MHZ CPU",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,36,-,-,64,-,10,3,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,80,-,-,-,2,2,-,-,3,-,-,-,-,-,-,-,-,2,3.6,1.7,391,-40,85 +STM32F101VB,"Mainstream Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 36 MHz CPU",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,36,-,-,128,-,16,3,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,80,-,-,-,2,2,-,-,3,-,-,-,-,-,-,-,-,2,3.6,1.7,391,-40,85 +STM32F101VC,"Mainstream Access line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 36 MHz CPU",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,36,-,-,256,-,32,6,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F101VD,"Mainstream Access line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 36 MHz CPU",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,36,-,-,384,-,48,6,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F101VE,"Mainstream Access line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 36 MHz CPU",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,36,-,-,512,-,48,6,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F101VF,"Mainstream Access line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 36 MHz CPU",Active,"LQFP 100 14x14x1.4,WLCSP 144L DIE 470 PITCH 0.4",Arm Cortex-M3,36,-,-,768,-,80,12,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F101VG,"Mainstream Access line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 36 MHz CPU",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,36,-,-,1024,-,80,12,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F101ZC,"Mainstream Access line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 36 MHz CPU",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,36,-,-,256,-,32,6,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,112,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F101ZD,"Mainstream Access line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 36 MHz CPU",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,36,-,-,384,-,48,6,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,112,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F101ZE,"Mainstream Access line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 36 MHz CPU",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,36,-,-,512,-,48,6,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,112,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F101ZF,"Mainstream Access line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 36 MHz CPU",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,36,-,-,768,-,80,12,-,"24-bit downcounter,2xWDG,SysTick",16,-,2,0,112,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F101ZG,"Mainstream Access line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 36 MHz CPU",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,36,-,-,1024,-,80,12,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,112,-,-,-,2,3,-,-,3,2,-,-,-,-,-,-,-,2,3.6,1.9,433,-40,85 +STM32F102C4,"Mainstream USB Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 48 MHz CPU, USB FS",Active,LQFP 48 7x7x1.4,Arm Cortex-M3,48,-,-,16,-,4,2,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,36,-,-,-,1,1,-,USB Device,2,-,-,-,-,-,-,-,-,2,3.6,1.55,348,-40,85 +STM32F102C6,"Mainstream USB Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 48 MHz CPU, USB FS",Active,LQFP 48 7x7x1.4,Arm Cortex-M3,48,-,-,32,-,6,2,-,"2 x WDG,24-bit down counter,RTC",10,-,-,-,36,-,-,-,1,1,-,USB Device,2,-,-,-,-,-,-,-,-,2,3.6,1.55,348,-40,85 +STM32F102C8,"Mainstream USB Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 48 MHz CPU, USB FS",Active,LQFP 48 7x7x1.4,Arm Cortex-M3,48,-,-,64,-,10,3,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,36,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.7,373,-40,85 +STM32F102CB,"Mainstream USB Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 48 MHz CPU, USB FS",Active,LQFP 48 7x7x1.4,Arm Cortex-M3,48,-,-,128,-,16,3,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,36,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.7,373,-40,85 +STM32F102R4,"Mainstream USB Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 48 MHz CPU, USB, FS",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,48,-,-,16,-,4,2,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,51,-,-,-,1,1,-,USB Device,2,-,-,-,-,-,-,-,-,2,3.6,1.55,348,-40,85 +STM32F102R6,"Mainstream USB Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 48 MHz CPU, USB FS",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,48,-,-,32,-,6,2,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,51,-,-,-,1,1,-,USB Device,2,-,-,-,-,-,-,-,-,2,3.6,1.55,348,-40,85 +STM32F102R8,"Mainstream USB Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 48 MHz CPU, USB FS",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,48,-,-,64,-,10,3,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,51,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.7,373,-40,85 +STM32F102RB,"Mainstream USB Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 48 MHz CPU, USB FS",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,48,-,-,128,-,16,3,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,51,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.7,373,-40,85 +STM32F103C4,"Mainstream Performance line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,LQFP 48 7x7x1.4,Arm Cortex-M3,72,-,-,16,-,6,3,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,36,-,1,-,1,1,-,USB Device,2,-,-,-,-,-,-,-,-,2,3.6,1.55,337,-40,"105,85" +STM32F103C6,"Mainstream Performance line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,72,-,-,32,-,10,3,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,36,-,1,-,1,1,-,USB Device,2,-,-,-,-,-,-,-,-,2,3.6,1.55,337,-40,"105,85" +STM32F103C8,"Mainstream Performance line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,LQFP 48 7x7x1.4,Arm Cortex-M3,72,-,-,64,-,20,4,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,36,-,1,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.7,373,-40,"105,85" +STM32F103CB,"Mainstream Performance line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,72,-,-,128,-,20,4,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,36,-,1,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.7,373,-40,"105,85" +STM32F103R4,"Mainstream Performance line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,72,-,-,16,-,6,3,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,51,-,1,-,1,1,-,USB Device,2,-,-,-,-,-,-,-,-,2,3.6,1.55,337,-40,"105,85" +STM32F103R6,"Mainstream Performance line, ARM Cortex-M3 MCU with 32 Kbytes Clash, 72 MHz CPU, motor control, USB and CAN",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,72,-,-,32,-,10,3,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,51,-,1,-,1,1,-,USB Device,2,-,-,-,-,-,-,-,-,2,3.6,1.55,337,-40,"105,85" +STM32F103R8,"Mainstream Performance line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,72,-,-,64,-,20,4,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,51,-,1,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.7,373,-40,"105,85" +STM32F103RB,"Mainstream Performance line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,72,-,-,128,-,20,4,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,51,-,1,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.7,373,-40,85 +STM32F103RC,"Mainstream Performance line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LQFP 64 10x10x1.4,WLCSP 64",Arm Cortex-M3,72,-,-,256,-,64,8,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,1,-,2,3,2,USB Device,3,2,-,-,-,SDIO,-,-,-,2,3.6,1.9,421,-40,"105,85" +STM32F103RD,"Mainstream Performance line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LQFP 64 10x10x1.4,WLCSP 64",Arm Cortex-M3,72,-,-,384,-,64,8,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,1,-,2,3,2,USB Device,3,2,-,-,-,SDIO,-,-,-,2,3.6,1.9,421,-40,85 +STM32F103RE,"Mainstream Performance line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LQFP 64 10x10x1.4,WLCSP 64",Arm Cortex-M3,72,-,-,512,-,64,8,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,1,-,2,3,2,USB Device,3,2,-,-,-,SDIO,-,-,-,2,3.6,1.9,421,-40,"105,85" +STM32F103RF,"Mainstream Performance line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,72,-,-,768,-,96,14,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,1,-,2,3,2,USB Device,3,2,-,-,-,SDIO,-,-,-,2,3.6,1.9,421,-40,"105,85" +STM32F103RG,"Mainstream Performance line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 72 MHz CPU, motor control, USB and CAN",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,72,-,-,1024,-,96,14,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,1,-,2,3,2,USB Device,3,2,-,-,-,SDIO,-,-,-,2,3.6,1.9,421,-40,"105,85" +STM32F103T4,"Mainstream Performance line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,VFQFPN 36 6x6x1-0,Arm Cortex-M3,72,-,-,16,-,6,3,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,26,-,1,-,1,1,-,USB Device,2,-,-,-,-,-,-,-,-,2,3.6,1.55,337,-40,"105,85" +STM32F103T6,"Mainstream Performance line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,VFQFPN 36 6x6x1-0,Arm Cortex-M3,72,-,-,32,-,10,3,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,26,-,1,-,1,1,-,USB Device,2,-,-,-,-,-,-,-,-,2,3.6,1.55,373,-40,"105,85" +STM32F103T8,"Mainstream Performance line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,VFQFPN 36 6x6x1-0,Arm Cortex-M3,72,-,-,64,-,20,4,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,26,-,1,-,1,1,-,USB Device,2,-,-,-,-,-,-,-,-,2,3.6,1.7,373,-40,"105,85" +STM32F103TB,"Mainstream Performance line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,VFQFPN 36 6x6x1-0,Arm Cortex-M3,72,-,-,128,-,20,4,-,"2 x WDG,24-bit down counter,RTC",10,-,-,0,26,-,1,-,1,1,-,USB Device,2,-,-,-,-,-,-,-,-,2,3.6,1.7,373,-40,85 +STM32F103V8,"Mainstream Performance line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4",Arm Cortex-M3,72,-,-,64,-,20,4,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,80,-,1,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.7,373,-40,85 +STM32F103VB,"Mainstream Performance line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M3,72,-,-,128,-,20,4,-,"2 x WDG,24-bit down counter,RTC",16,-,-,0,80,-,1,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.7,373,-40,"105,85" +STM32F103VC,"Mainstream Performance line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4",Arm Cortex-M3,72,-,-,256,-,48,8,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,1,-,2,3,2,USB Device,3,2,-,-,-,"FSMC,SDIO",-,-,-,2,3.6,1.9,421,-40,"105,85" +STM32F103VD,"Mainstream Performance line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4",Arm Cortex-M3,72,-,-,384,-,64,8,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,1,-,2,3,2,USB Device,3,2,-,-,-,"FSMC,SDIO",-,-,-,2,3.6,1.9,421,-40,"105,85" +STM32F103VE,"Mainstream Performance line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4",Arm Cortex-M3,72,-,-,512,-,64,8,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,1,-,2,3,2,USB Device,3,2,-,-,-,"FSMC,SDIO",-,-,-,2,3.6,1.9,421,-40,"105,85" +STM32F103VF,"Mainstream Performance line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 72MHz CPU, motor control, USB and CAN",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,72,-,-,768,-,96,14,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,1,-,2,3,2,USB Device,3,2,-,-,-,SDIO,-,-,-,2,3.6,1.9,421,-40,"105,85" +STM32F103VG,"Mainstream Performance line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 72 MHz CPU, motor control, USB and CAN",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,72,-,-,1024,-,96,14,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,1,-,2,3,2,USB Device,3,2,-,-,-,SDIO,-,-,-,2,3.6,1.9,421,-40,"105,85" +STM32F103ZC,"Mainstream Performance line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4",Arm Cortex-M3,72,-,-,256,-,48,8,-,"2 x WDG,24-bit down counter,RTC",21,-,2,0,112,-,1,-,2,3,2,USB Device,3,2,-,-,-,SDIO,-,-,-,2,3.6,1.9,421,-40,"105,85" +STM32F103ZD,"Mainstream Performance line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4",Arm Cortex-M3,72,-,-,384,-,64,8,-,"2 x WDG,24-bit down counter,RTC",21,-,2,0,112,-,1,-,2,3,2,USB Device,3,2,-,-,-,SDIO,-,-,-,2,3.6,1.9,421,-40,"105,85" +STM32F103ZE,"Mainstream Performance line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4",Arm Cortex-M3,72,-,-,512,-,64,8,-,"2 x WDG,24-bit down counter,RTC",21,-,2,0,112,-,1,-,2,3,2,USB Device,3,2,-,-,-,SDIO,-,-,-,2,3.6,1.9,421,-40,"105,85" +STM32F103ZF,"Mainstream Performance line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4",Arm Cortex-M3,72,-,-,768,-,96,14,-,"2 x WDG,24-bit down counter,RTC",21,-,2,0,112,-,1,-,2,3,2,USB Device,3,2,-,-,-,SDIO,-,-,-,2,3.6,1.9,421,-40,"105,85" +STM32F103ZG,"Mainstream Performance line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 72 MHz CPU, motor control, USB and CAN",Active,"LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4",Arm Cortex-M3,72,-,-,1024,-,96,14,-,"2 x WDG,24-bit down counter,RTC",21,-,2,0,112,-,1,-,2,3,2,USB Device,3,2,-,-,-,SDIO,-,-,-,2,3.6,1.9,421,-40,"105,85" +STM32F105R8,"Mainstream Connectivity line, ARM Cortex-M3 with 64 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,72,-,-,64,-,64,7,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,2,-,2,3,2,USB OTG FS,3,2,-,-,-,-,-,-,-,2,3.6,1.9,393,-40,"105,85" +STM32F105RB,"Mainstream Connectivity line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,72,-,-,128,-,64,7,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,2,-,2,3,2,USB OTG FS,3,2,-,-,-,-,-,-,-,2,3.6,1.9,393,-40,"105,85" +STM32F105RC,"Mainstream Connectivity line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,72,-,-,256,-,64,7,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,2,-,2,3,2,USB OTG FS,3,2,-,-,-,-,-,-,-,2,3.6,1.9,393,-40,"105,85" +STM32F105V8,"Mainstream Connectivity line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,72,-,-,64,-,64,7,-,"2 x WDG,24-bit down counter,RTC",16,-,2,-,80,-,2,-,2,3,2,USB OTG FS,3,2,-,-,-,-,-,-,-,2,3.6,1.9,393,-40,"105,85" +STM32F105VB,"Mainstream Connectivity line, ARM Cortex-M3 MCU with 128 Kbytes Flash,72 MHz CPU, CAN, USB 2.0 OTG",Active,"LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4",Arm Cortex-M3,72,-,-,128,-,64,7,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,2,-,2,3,2,USB OTG FS,3,2,-,-,-,-,-,-,-,2,3.6,1.9,393,-40,"105,85" +STM32F105VC,"Mainstream Connectivity line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,72,-,-,256,-,64,7,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,2,-,2,3,2,USB OTG FS,3,2,-,-,-,-,-,-,-,2,3.6,1.9,393,-40,"105,85" +STM32F107RB,"Mainstream Connectivity line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, Ethernet MAC, CAN and USB 2.0 OTG",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,72,-,-,128,-,64,7,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,2,-,1,3,2,USB OTG FS,3,2,-,-,Ethernet,-,-,-,-,2,3.6,1.9,393,-40,"105,85" +STM32F107RC,"Mainstream Connectivity line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, Ethernet MAC, CAN and USB 2.0 OTG",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,72,-,-,256,-,64,7,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,51,-,2,-,1,3,2,USB OTG FS,3,2,-,-,Ethernet,-,-,-,-,2,3.6,1.9,393,-40,"105,85" +STM32F107VB,"Mainstream Connectivity line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, Ethernet MAC, CAN and USB 2.0 OTG",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,72,-,-,128,-,64,7,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,2,-,1,3,2,USB OTG FS,3,2,-,-,Ethernet,-,-,-,-,2,3.6,1.9,393,-40,"105,85" +STM32F107VC,"Mainstream Connectivity line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, Ethernet MAC, CAN and USB 2.0 OTG",Active,"LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4",Arm Cortex-M3,72,-,-,256,-,64,7,-,"2 x WDG,24-bit down counter,RTC",16,-,2,0,80,-,2,-,1,3,2,USB OTG FS,3,2,-,-,Ethernet,-,-,-,-,2,3.6,1.9,393,-40,85 +STM32F301C6,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,32,-,16,5,1,"2xWDG,RTC,SysTick",11,-,1,3,37,-,-,-,3,2,2,-,3,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,"105,85" +STM32F301C8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp",Active,"LQFP 48 7x7x1.4,WLCSP 49L DIE 439 P 0.4 MM",Arm Cortex-M4,72,-,-,64,-,16,5,1,"2xWDG,RTC,SysTick",11,-,1,3,37,-,-,-,3,2,2,-,3,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,"105,85" +STM32F301K6,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M4,72,-,-,32,-,16,5,1,"2xWDG,RTC,SysTick",8,-,1,2,24,-,-,-,3,2,2,-,2,-,-,1,-,-,-,-,-,2,3.6,1.4,349,-40,"105,85" +STM32F301K8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M4,72,-,-,64,-,16,5,1,"2xWDG,RTC,SysTick",8,-,1,2,24,-,-,-,3,2,2,-,2,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,"105,85" +STM32F301R6,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz, 12-bit ADC 5 MSPS, Comparator, Op-Amp",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,32,-,16,5,1,"2xWDG,RTC,SysTick",15,-,1,3,51,-,-,-,3,2,2,-,3,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,85 +STM32F301R8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,64,-,16,5,1,"2xWDG,RTC,SysTick",15,-,1,3,51,-,-,-,3,2,2,-,3,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,85 +STM32F302C6,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,32,-,16,5,1,"2xWDG,RTC,SysTick",11,-,1,3,37,-,1,-,3,2,2,USB Device,3,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,85 +STM32F302C8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp",Active,"LQFP 48 7x7x1.4,WLCSP 49L DIE 439 P 0.4 MM",Arm Cortex-M4,72,-,-,64,-,16,5,1,"2xWDG,RTC,SysTick",11,-,1,3,37,-,1,-,3,2,2,USB Device,3,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,"105,85" +STM32F302CB,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,128,-,32,7,1,"2xWDG,RTC,SysTick",9,-,1,4,37,-,1,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,2,3.6,1.5,392,-40,"105,85" +STM32F302CC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,256,-,40,7,1,"2xWDG,RTC,SysTick",9,-,1,4,37,-,1,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,2,3.6,1.5,392,-40,"105,85" +STM32F302K6,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp",Active,UFQFPN 32 5x5x0.55,Arm Cortex-M4,72,-,-,32,-,16,5,1,"2xWDG,RTC,SysTick",8,-,1,2,24,-,1,-,3,2,2,USB Device,2,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,85 +STM32F302K8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp",Active,UFQFPN 32 5x5x0.55,Arm Cortex-M4,72,-,-,64,-,16,5,1,"2xWDG,RTC,SysTick",8,-,1,2,24,-,1,-,3,2,2,USB Device,2,-,-,1,-,-,-,-,-,2,3.6,1.4,349,-40,"105,85" +STM32F302R6,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,32,-,16,5,1,"2xWDG,RTC,SysTick",15,-,1,3,51,-,1,-,3,2,2,USB Device,3,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,85 +STM32F302R8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,64,-,16,5,1,"2xWDG,RTC,SysTick",15,-,1,3,51,-,1,-,3,2,2,USB Device,3,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,"105,85" +STM32F302RB,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,128,-,32,7,1,"2xWDG,RTC,SysTick",16,-,1,4,52,-,1,-,2,3,2,USB Device,3,2,-,2,-,-,-,-,-,2,3.6,1.5,392,-40,"105,85" +STM32F302RC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,256,-,40,7,1,"2 x WDG,RTC,SysTick",16,-,1,4,52,-,1,-,2,3,2,USB Device,3,2,-,2,-,-,-,-,-,2,3.6,1.5,392,-40,"105,85" +STM32F302RD,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,384,-,64,7,1,"2xWDG,RTC,SysTick",16,-,1,4,51,-,1,-,3,4,2,USB Device,3,2,-,2,-,-,-,-,-,2,3.6,1.5,392,-40,"105,85" +STM32F302RE,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,512,-,64,7,1,"2xWDG,RTC,SysTick",16,-,1,4,51,-,1,-,3,4,2,USB Device,3,2,-,2,-,-,-,-,-,2,3.6,1.5,392,-40,"105,85" +STM32F302VB,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU,128 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,72,-,-,128,-,32,7,1,"2 x WDG,RTC,SysTick",17,-,1,4,87,-,1,-,2,3,2,USB Device,3,2,-,2,-,-,-,-,-,2,3.6,1.5,392,-40,85 +STM32F302VC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators",Active,"LQFP 100 14x14x1.4,WLCSP 100L P 0.4 MM DIE 422",Arm Cortex-M4,72,-,-,256,-,40,7,1,"2xWDG,IR Timer,RTC,SysTick",17,-,1,4,87,-,1,-,2,3,2,USB Device,3,2,-,2,-,-,-,-,-,2,3.6,1.5,392,-40,"105,85" +STM32F302VD,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,72,-,-,384,-,64,7,1,"2xWDG,RTC,SysTick",17,-,1,4,86,-,1,-,3,4,2,USB Device,3,2,-,2,-,-,-,-,-,2,3.6,1.5,392,-40,85 +STM32F302VE,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,72,-,-,512,-,64,7,1,"2xWDG,RTC,SysTick",17,-,1,4,86,-,1,-,3,4,2,USB Device,3,2,-,2,-,-,-,-,-,2,3.6,1.5,392,-40,85 +STM32F302ZD,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,72,-,-,384,-,64,7,1,"2xWDG,RTC,SysTick",18,-,1,4,115,-,1,-,3,4,2,USB Device,3,2,-,2,-,-,-,-,-,2,3.6,1.5,392,-40,85 +STM32F302ZE,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,72,-,-,512,-,64,7,1,"2xWDG,RTC,SysTick",18,-,1,4,115,-,1,-,3,4,2,USB Device,3,2,-,2,-,-,-,-,-,2,3.6,1.5,392,-40,"105,85" +STM32F303C6,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 32 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,32,-,16,7,1,"2xWDG,RTC,SysTick",15,-,3,3,37,-,1,-,1,1,-,-,3,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,85 +STM32F303C8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp",Active,"LQFP 48 7x7x1.4,WLCSP 49L DIE 438 PITCH 0.5",Arm Cortex-M4,72,-,-,64,-,16,7,1,"2xWDG,RTC,SysTick",15,-,3,3,37,-,1,-,1,1,-,USB Device,3,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,85 +STM32F303CB,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,128,-,40,9,1,"2 x WDG,RTC,SysTick",15,-,2,7,37,-,1,-,2,3,2,USB Device,3,-,-,4,-,-,-,-,-,2,3.6,1.5,392,-40,"105,85" +STM32F303CC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,256,-,48,9,1,"2 x WDG,RTC,SysTick",15,-,2,7,37,-,1,-,2,3,2,USB Device,3,-,-,4,-,-,-,-,-,2,3.6,1.5,392,-40,85 +STM32F303K6,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 32 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp",Active,LQFP 32 7x7x1.4,Arm Cortex-M4,72,-,-,32,-,16,7,1,"2xWDG,RTC,SysTick",9,-,3,2,25,-,1,-,1,1,-,USB Device,2,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,85 +STM32F303K8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp",Active,LQFP 32 7x7x1.4,Arm Cortex-M4,72,-,-,64,-,16,7,1,"2xWDG,RTC,SysTick",9,-,3,2,25,-,1,-,1,1,-,USB Device,2,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,85 +STM32F303R6,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 32 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,32,-,16,7,1,"2xWDG,RTC,SysTick",21,-,3,3,51,-,1,-,1,1,-,USB Device,3,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,85 +STM32F303R8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,64,-,16,7,1,"2xWDG,RTC,SysTick",21,-,3,3,51,-,1,-,1,1,-,USB Device,3,-,-,1,-,-,-,-,-,2,3.6,1.4,353,-40,85 +STM32F303RB,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,128,-,40,9,1,"2xWDG,RTC,SysTick",22,-,2,7,52,-,1,-,2,3,2,USB Device,3,2,-,4,-,-,-,-,-,2,3.6,1.5,392,-40,"105,85" +STM32F303RC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,256,-,48,9,1,"2xWDG,RTC,SysTick",22,-,2,7,52,-,1,-,2,3,2,USB Device,3,2,-,4,-,-,-,-,-,2,3.6,1.5,392,-40,"105,85" +STM32F303RD,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 384 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,384,-,80,9,1,"2xWDG,RTC,SysTick",22,-,2,7,51,-,1,-,3,4,2,USB Device,3,2,-,4,-,-,-,-,-,2,3.6,1.5,392,-40,"105,85" +STM32F303RE,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,512,-,80,9,1,"2xWDG,RTC,SysTick",22,-,2,7,51,-,1,-,3,4,2,USB Device,3,2,-,4,-,-,-,-,-,2,3.6,2,450,-40,"105,85" +STM32F303VB,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,72,-,-,128,-,40,9,1,"2xWDG,RTC,SysTick",39,-,2,7,87,-,1,-,2,3,2,USB Device,3,2,-,4,-,-,-,-,-,2,3.6,1.5,392,-40,85 +STM32F303VC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,"LQFP 100 14x14x1.4,WLCSP 100L P 0.4 MM DIE 422",Arm Cortex-M4,72,-,-,256,-,48,9,1,"2 x WDG,RTC,SysTick",39,-,2,7,87,-,1,-,2,3,2,USB Device,3,2,-,4,-,-,-,-,-,2,3.6,1.5,392,-40,"105,85" +STM32F303VD,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,72,-,-,384,-,80,10,1,"2xWDG,RTC,SysTick",39,-,2,7,86,-,1,-,3,4,2,USB Device,3,2,-,4,-,-,-,-,-,2,3.6,1.5,392,-40,85 +STM32F303VE,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6,WLCSP 100L P 0.4MM DIE 446",Arm Cortex-M4,72,-,-,512,-,80,10,1,"2xWDG,RTC,SysTick",39,-,2,7,86,-,1,-,3,4,2,USB Device,3,2,-,4,-,FMC,-,-,-,2,3.6,1.5,392,-40,105 +STM32F303ZD,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,72,-,-,384,-,80,10,1,"2xWDG,RTC,SysTick",40,-,2,7,115,-,1,-,3,4,2,USB Device,3,2,-,4,-,-,-,-,-,2,3.6,1.5,392,-40,85 +STM32F303ZE,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,72,-,-,512,-,80,10,1,"2xWDG,RTC,SysTick",40,-,2,7,115,-,1,-,3,4,2,USB Device,3,2,-,4,-,-,-,-,-,2,3.6,1.5,392,-40,"105,85" +STM32F318C8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp",Active,"LQFP 48 7x7x1.4,WLCSP 49L DIE 439 P 0.4 MM",Arm Cortex-M4,72,-,-,64,-,16,5,1,"2xWDG,RTC,SysTick",11,-,1,3,37,-,1,-,3,2,2,-,3,-,-,1,-,-,-,-,-,1.65,1.95,4.2,350,-40,85 +STM32F318K8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp",Active,UFQFPN 32 5x5x0.55,Arm Cortex-M4,72,-,-,64,-,16,5,1,"2xWDG,RTC,SysTick",8,-,1,2,24,-,1,-,3,2,2,-,3,-,-,1,-,-,-,-,-,1.65,1.95,4.2,350,-40,"105,85" +STM32F328C8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,64,-,16,7,1,"2xWDG,RTC,SysTick",14,-,3,3,37,-,1,-,1,1,2,-,3,-,-,1,-,-,-,-,-,1.65,1.95,6.8,420,-40,85 +STM32F334C4,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 16 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,16,-,16,7,1,"2xWDG,RTC,SysTick",15,-,3,3,37,-,1,-,1,1,-,-,3,-,-,1,-,-,-,-,-,2,3.6,1,420,-40,85 +STM32F334C6,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 32 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,32,-,16,7,1,"2xWDG,RTC,SysTick,hr timer (10x217ps)",15,-,3,3,37,-,1,-,1,1,-,-,3,-,-,1,-,-,-,-,-,2,3.6,1,420,-40,"105,85" +STM32F334C8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer",Active,"LQFP 48 7x7x1.4,WLCSP 49L DIE 438 PITCH 0.5",Arm Cortex-M4,72,-,-,64,-,16,7,1,"2xWDG,IR Timer,RTC,SysTick,hr timer (10x217ps)",15,-,3,3,37,-,1,-,1,1,-,-,3,-,-,1,-,-,-,-,-,2,3.6,1,420,-40,"105,85" +STM32F334K4,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 16 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer",Active,LQFP 32 7x7x1.4,Arm Cortex-M4,72,-,-,16,-,16,7,1,"2xWDG,RTC,SysTick",9,-,3,2,24,-,1,-,1,1,-,-,2,-,-,1,-,-,-,-,-,2,3.6,1,420,-40,85 +STM32F334K8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer",Active,"LQFP 32 7x7x1.4,UFQFPN 32L P 0.5 MM CHIP ON LEAD",Arm Cortex-M4,72,-,-,64,-,16,7,1,"2xWDG,RTC,SysTick,hr timer (10x217ps)",9,-,3,2,25,-,1,-,1,1,-,-,2,-,-,1,-,-,-,-,-,2,3.6,1,420,-40,"105,85" +STM32F334R6,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 32 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,32,-,16,7,1,"2xWDG,RTC,SysTick,hr timer (10x217ps)",21,-,3,3,51,-,1,-,1,1,-,-,3,-,-,1,-,-,-,-,-,2,3.6,1,420,-40,85 +STM32F334R8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,64,-,16,7,1,"2xWDG,RTC,SysTick,hr timer (10x217ps)",21,-,3,3,51,-,1,-,1,1,-,-,3,-,-,1,-,-,-,-,-,2,3.6,1,420,-40,"105,85" +STM32F358CC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5Msps, PGA, comparators",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,256,-,48,9,1,"2xWDG,RTC,SysTick",14,-,2,7,36,-,1,-,2,3,2,-,3,2,-,4,-,-,-,-,-,1.65,1.95,7.4,368,-40,85 +STM32F358RC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5Msps, PGA, comparators",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,256,-,48,9,1,"2xWDG,RTC,SysTick",21,-,2,7,51,-,1,-,2,3,2,-,3,2,-,4,-,-,-,-,-,1.65,1.95,7.4,368,-40,85 +STM32F358VC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5Msps, PGA, comparators",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,72,-,-,256,-,48,9,1,"2xWDG,RTC,SysTick",38,-,2,7,86,-,1,-,2,3,2,-,3,2,-,4,-,-,-,-,-,1.65,1.95,7.4,368,-40,85 +STM32F373C8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,64,-,16,12,2,"2 x WDG,RTC,SysTick",9,8,3,2,36,-,1,-,2,3,3,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.6,417,-40,85 +STM32F373CB,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 KBytes Flash, 72MHz CPU, MPU, 16-bit ADC, comparators",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,128,-,24,12,2,"2 x WDG,RTC,SysTick",9,8,3,2,36,-,1,-,2,3,3,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.6,417,-40,"105,85" +STM32F373CC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 KBytes Flash, 72 MHz CPU, MPU, 16-bit ADC comparators",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,256,-,32,12,2,"2 x WDG,RTC,SysTick",9,8,3,2,36,-,1,-,2,3,3,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.6,417,-40,"105,85" +STM32F373R8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,64,-,16,12,2,"2 x WDG,RTC,SysTick",16,8,3,2,52,-,1,-,2,3,3,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.6,417,-40,85 +STM32F373RB,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,128,-,24,12,2,"2 x WDG,RTC,SysTick",16,8,3,2,52,-,1,-,2,3,3,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.6,417,-40,"105,85" +STM32F373RC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 KBytes Flash, 72 MHz CPU, MPU, 16-bit ADC comparators",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,72,-,-,256,-,32,12,2,"2 x WDG,RTC,SysTick",16,8,3,2,52,-,1,-,2,3,3,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.6,417,-40,85 +STM32F373V8,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,72,-,-,64,-,16,12,2,"2 x WDG,RTC,SysTick",16,21,3,2,84,-,1,-,2,3,3,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.6,417,-40,85 +STM32F373VB,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 KBytes Flash, 72 MHz CPU, MPU, 16-bit ADC comparators",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,72,-,-,128,-,24,12,2,"2 x WDG,RTC,SysTick",16,21,3,2,84,-,1,-,2,3,3,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.6,417,-40,"105,85" +STM32F373VC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 KBytes Flash, 72 MHz CPU, MPU, 16-bit ADC comparators",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,72,-,-,256,-,32,12,2,"2 x WDG,RTC,SysTick",16,21,3,2,84,-,1,-,2,3,3,USB Device,3,-,-,-,-,-,-,-,-,2,3.6,1.6,417,-40,"105,85" +STM32F378CC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators",Active,LQFP 48 7x7x1.4,Arm Cortex-M4,72,-,-,256,-,32,9,2,"2xWDG,RTC,SysTick",9,8,3,2,36,-,1,-,2,3,3,-,3,-,-,-,-,-,-,-,-,1.65,1.95,5.9,430,-40,85 +STM32F378RC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators",Active,"LQFP 64 10x10x1.4,WLCSP 66L DIE 432 R 8X8 0.4 MM P",Arm Cortex-M4,72,-,-,256,-,32,12,2,"2xWDG,RTC,SysTick",16,8,3,2,52,-,1,-,2,3,3,-,3,-,-,-,-,-,-,-,-,1.65,1.95,5.9,394,-40,85 +STM32F378VC,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,72,-,-,256,-,32,12,2,"2xWDG,RTC,SysTick",16,21,3,2,84,-,1,-,2,3,3,-,3,-,-,-,-,-,-,-,-,1.65,1.95,5.9,430,-40,85 +STM32F398VE,"Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5Msps, PGA, comparators",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,72,-,-,512,-,80,10,1,"2xWDG,RTC,SysTick",38,-,2,7,86,-,1,-,3,4,2,-,3,2,-,4,-,-,-,-,-,1.65,1.95,9.8,392,-40,85 diff --git a/stm32/csv/STM32 Ultra Low Power MCUs.csv b/stm32/csv/STM32 Ultra Low Power MCUs.csv new file mode 100644 index 0000000..5913a9f --- /dev/null +++ b/stm32/csv/STM32 Ultra Low Power MCUs.csv @@ -0,0 +1,286 @@ +Part Number,General Description,Marketing Status,Package,Core,Operating Frequency (MHz) (Processor speed),Co-Processor type,Co-Processor frequency (MHz) max,FLASH Size (kB) (Prog),Data E2PROM (B) nom,RAM Size (kB),Timers (16 bit) typ,Timers (32 bit) typ,Other timer functions,A/D Converters (12-bit channels),A/D Converters (16-bit channels),D/A Converters (12 bit) typ,Comparator,I/Os (High Current),Display controller,CAN typ,CAN FD typ,I2C typ,SPI typ,I2S typ,USB Type,USART typ,UART typ,Connectivity supported,Integrated op-amps,Additional Serial Interfaces,Parallel Interfaces,Crypto-HASH,TRNG typ,SMPS,Supply Voltage (V) min,Supply Voltage (V) max,Supply Current (µA) (Lowest power mode) typ,Supply Current (µA) (Run mode (per Mhz)) typ,Operating Temperature (°C) min,Operating Temperature (°C) max +STM32L011F3,"Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU",Active,"TSSOP 20,UFQFPN 20 3x3x0.6",Arm Cortex-M0+,32,-,-,8,512,2,3,-,"2xWDG,RTC,SysTick",9,-,-,2,16,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,"125,85" +STM32L031G4,"Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU",Active,UFQFPN 28 4x4x0.55,Arm Cortex-M0+,32,-,-,16,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,23,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,85 +STM32L031G6,"Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU",Active,UFQFPN 28 4x4x0.55,Arm Cortex-M0+,32,-,-,32,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,23,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,105 +STM32L051R8,"Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M0+,32,-,-,64,2048,8,5,-,"2xWDG,RTC,SysTick",16,-,-,2,51,-,-,-,2,2,1,-,2,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L072CZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB",Active,"EWLCSP 49L DIE 447 P 0.4 MM,LQFP 48 7x7x1.4,WLCSP 49L DIE 447 P 0.4 MM",Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",13,-,2,2,40,-,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"105,125,85" +STM32L072KZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",10,-,2,2,25,-,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L462VE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 kbytes Flash, USB Device, AES-256, DFSDM",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,80,-,-,512,-,160,7,1,"2xWDG,RTC,SysTick",16,-,1,2,83,-,1,-,4,3,-,USB Device,4,1,-,1,SAI,"DFSDM,FMC",AES,true,-,1.71,3.6,0.03,100,-40,85 +STM32L471ZE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM",Active,"LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM",Arm Cortex-M4,80,-,-,512,-,128,11,2,"2xWDG,RTC,SysTick",24,-,2,2,114,-,1,-,3,3,-,-,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L476VE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,80,-,-,512,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,82,LCD 4x44/8x40,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L4R5QG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, CHROM-ART",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M4,120,-,-,1024,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,110,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L011D3,"Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU",Active,TSSOP 14,Arm Cortex-M0+,32,-,-,8,512,2,3,-,"2xWDG,RTC,SysTick",4,-,-,2,11,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.23,87,-40,85 +STM32L011D4,"Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU",Active,TSSOP 14,Arm Cortex-M0+,32,-,-,16,512,2,3,-,"2xWDG,RTC,SysTick",4,-,-,2,11,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,"105,85" +STM32L011E3,"Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU",Active,WLCSP 25L DIE 457 P 0.4,Arm Cortex-M0+,32,-,-,8,512,2,3,-,"2xWDG,RTC,SysTick",10,-,-,2,21,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,85 +STM32L011E4,"Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU",Active,WLCSP 25L DIE 457 P 0.4,Arm Cortex-M0+,32,-,-,16,512,2,3,-,"2xWDG,RTC,SysTick",10,-,-,2,21,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,85 +STM32L011F4,"Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU",Active,"TSSOP 20,UFQFPN 20 3x3x0.6",Arm Cortex-M0+,32,-,-,16,512,2,3,-,"2xWDG,RTC,SysTick",9,-,-,2,16,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,"125,85" +STM32L011G3,"Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU",Active,UFQFPN 28 4x4x0.55,Arm Cortex-M0+,32,-,-,8,512,2,3,-,"2xWDG,RTC,SysTick",10,-,-,2,24,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,85 +STM32L011G4,"Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU",Active,UFQFPN 28 4x4x0.55,Arm Cortex-M0+,32,-,-,16,512,2,3,-,"2xWDG,RTC,SysTick",10,-,-,2,24,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,"105,85" +STM32L011K3,"Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU",Active,UFQFPN 32 5x5x0.55,Arm Cortex-M0+,32,-,-,8,512,2,3,-,"2xWDG,RTC,SysTick",10,-,-,2,28,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,85 +STM32L011K4,"Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0+,32,-,-,16,512,2,3,-,"2xWDG,RTC,SysTick",10,-,-,2,28,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,"105,125,85" +STM32L021D4,"Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU, AES",Active,TSSOP 14,Arm Cortex-M0+,32,-,-,16,512,2,3,-,"2xWDG,RTC,SysTick",4,-,-,2,11,-,-,-,1,1,-,-,1,1,-,-,-,-,AES,-,-,1.65,3.6,0.23,87,-40,"105,85" +STM32L021F4,"Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU, AES",Active,UFQFPN 20 3x3x0.6,Arm Cortex-M0+,32,-,-,16,512,2,3,-,"2xWDG,RTC,SysTick",9,-,-,2,16,-,-,-,1,1,-,-,1,1,-,-,-,-,AES,-,-,1.65,3.6,0.23,87,-40,"105,85" +STM32L021G4,"Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU, AES",Active,UFQFPN 28 4x4x0.55,Arm Cortex-M0+,32,-,-,16,512,2,3,-,"2xWDG,RTC,SysTick",10,-,-,2,24,-,-,-,1,1,-,-,1,1,-,-,-,-,AES,-,-,1.65,3.6,0.23,87,-40,"105,85" +STM32L021K4,"Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU, AES",Active,LQFP 32 7x7x1.4,Arm Cortex-M0+,32,-,-,16,512,2,3,-,"2xWDG,RTC,SysTick",10,-,-,2,28,-,-,-,1,1,-,-,1,1,-,-,-,-,AES,-,-,1.65,3.6,0.23,87,-40,"105,85" +STM32L031C4,"Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,16,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,38,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,85 +STM32L031C6,"Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M0+,32,-,-,32,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,38,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,"105,125,85" +STM32L031E4,"Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU",Active,WLCSP 25L DIE 425,Arm Cortex-M0+,32,-,-,16,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,20,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,85 +STM32L031E6,"Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU",Active,WLCSP 25L DIE 425,Arm Cortex-M0+,32,-,-,32,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,20,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,85 +STM32L031F4,"Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU",Active,TSSOP 20,Arm Cortex-M0+,32,-,-,16,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,15,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,"105,125,85" +STM32L031F6,"Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU",Active,TSSOP 20,Arm Cortex-M0+,32,-,-,32,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,15,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,"105,85" +STM32L031K4,"Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU",Active,UFQFPN 32 5x5x0.55,Arm Cortex-M0+,32,-,-,16,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,27,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,85 +STM32L031K6,"Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0+,32,-,-,32,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,27,-,-,-,1,1,-,-,1,1,-,-,-,-,-,-,-,1.65,3.6,0.25,87,-40,"105,125,85" +STM32L041C6,"Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,32,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,38,-,-,-,1,1,-,-,1,1,-,-,-,-,AES,-,-,1.65,3.6,0.25,87,-40,"105,85" +STM32L041E6,"Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES",Active,WLCSP 25L DIE 425,Arm Cortex-M0+,32,-,-,32,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,20,-,-,-,1,1,-,-,1,1,-,-,-,-,AES,-,-,1.65,3.6,0.25,87,-40,85 +STM32L041F6,"Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES",Active,TSSOP 20,Arm Cortex-M0+,32,-,-,32,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,15,-,-,-,1,1,-,-,1,1,-,-,-,-,AES,-,-,1.65,3.6,0.25,87,-40,105 +STM32L041G6,"Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES",Active,UFQFPN 28 4x4x0.55,Arm Cortex-M0+,32,-,-,32,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,23,-,-,-,1,1,-,-,1,1,-,-,-,-,AES,-,-,1.65,3.6,0.25,87,-40,"105,85" +STM32L041K6,"Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0+,32,-,-,32,1024,8,4,-,"2xWDG,RTC,SysTick",10,-,-,2,27,-,-,-,1,1,-,-,1,1,-,-,-,-,AES,-,-,1.65,3.6,0.25,87,-40,"105,85" +STM32L051C6,"Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,32,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,-,2,37,-,-,-,2,2,1,-,2,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,85 +STM32L051C8,"Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,64,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,-,2,37,-,-,-,2,2,1,-,2,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,"105,125,85" +STM32L051K6,"Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0+,32,-,-,32,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,-,2,27,-,-,-,1,1,-,-,2,-,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,85 +STM32L051K8,"Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0+,32,-,-,64,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,-,2,27,-,-,-,1,1,-,-,2,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,"105,125,85" +STM32L051R6,"Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M0+,32,-,-,32,2048,8,5,-,"2xWDG,RTC,SysTick",16,-,-,2,51,-,-,-,2,2,1,-,2,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,85 +STM32L051T6,"Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU",Active,WLCSP 36L DIE 417 P 0.4 MM,Arm Cortex-M0+,32,-,-,32,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,-,2,29,-,-,-,2,1,-,-,2,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,85 +STM32L051T8,"Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU",Active,WLCSP 36L DIE 417 P 0.4 MM,Arm Cortex-M0+,32,-,-,64,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,-,2,29,-,-,-,2,2,1,-,2,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L052C6,"Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,32,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,1,2,37,-,-,-,2,2,1,USB Device,2,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,85 +STM32L052C8,"Ultra-low power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,64,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,1,2,37,-,-,-,2,2,1,USB Device,2,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,85 +STM32L052K6,"Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0+,32,-,-,32,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,1,2,27,-,-,-,1,1,1,USB Device,2,-,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L052K8,"Ultra-low power ARM Cortex-M0+ MCU with 64-Kbyte Flash, 32 MHz CPU, USB",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0+,32,-,-,64,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,1,2,27,-,-,-,1,1,1,USB Device,2,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"105,125,85" +STM32L052R6,"Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M0+,32,-,-,32,2048,8,5,-,"2xWDG,RTC,SysTick",16,-,1,2,51,-,-,-,2,2,1,USB Device,2,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,85 +STM32L052R8,"Ultra-low power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M0+,32,-,-,64,2048,8,5,-,"2xWDG,RTC,SysTick",16,-,1,2,51,-,-,-,2,2,1,USB Device,2,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L052T6,"Ultra-low power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, USB",Active,WLCSP 36L DIE 417 P 0.4 MM,Arm Cortex-M0+,32,-,-,32,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,1,2,29,-,-,-,2,1,-,USB Device,2,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,85 +STM32L052T8,"Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB",Active,"THIN WLCSP 36L DIE 417 P 0.4 MM,WLCSP 36L DIE 417 P 0.4 MM",Arm Cortex-M0+,32,-,-,64,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,1,2,29,-,-,-,2,1,1,USB Device,2,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L053C6,"Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB, LCD",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,32,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,1,2,37,LCD 4x18,-,-,2,2,1,USB Device,2,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L053C8,"Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB, LCD",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M0+,32,-,-,64,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,1,2,37,LCD 4x18,-,-,2,2,1,USB Device,2,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L053R6,"Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB, LCD",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M0+,32,-,-,32,2048,8,5,-,"2xWDG,RTC,SysTick",16,-,1,2,51,LCD 4x31/8x28,-,-,2,2,1,USB Device,2,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,85 +STM32L053R8,"Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB, LCD",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M0+,32,-,-,64,2048,8,5,-,"2xWDG,RTC,SysTick",16,-,1,2,51,LCD 4x31/8x28,-,-,2,2,1,USB Device,2,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"105,125,85" +STM32L062K8,"Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB, AES",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0+,32,-,-,64,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,1,2,27,-,-,-,1,1,1,USB Device,2,-,-,-,-,-,AES,true,-,1.65,3.6,0.29,87,-40,85 +STM32L063C8,"Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB, LCD, AES",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,64,2048,8,5,-,"2xWDG,RTC,SysTick",10,-,1,2,37,LCD 4x18,-,-,2,2,1,USB Device,2,1,-,-,-,-,AES,true,-,1.65,3.6,0.29,87,-40,85 +STM32L063R8,"Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz, USB, LCD, AES",Active,LQFP 64 10x10x1.4,Arm Cortex-M0+,32,-,-,64,2048,8,5,-,"2xWDG,RTC,SysTick",16,-,1,2,51,LCD 4x31/8x28,-,-,2,2,1,USB Device,2,1,-,-,-,-,AES,true,-,1.65,3.6,0.29,87,-40,85 +STM32L071C8,"Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,64,3072,20,5,-,"2xWDG,RTC,SysTick",13,-,-,2,37,-,-,-,3,2,1,-,4,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L071CB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU",Active,"LQFP 48 7x7x1.4,WLCSP 49L DIE 447 P 0.4 MM",Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",13,-,-,2,40,-,-,-,2,2,1,-,4,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,"105,125,85" +STM32L071CZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192 Kbytes Flash, 32 MHz CPu",Active,"LQFP 48 7x7x1.4,WLCSP 49L DIE 447 P 0.4 MM",Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",13,-,-,2,40,-,-,-,2,2,1,-,4,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L071K8,"Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU",Active,UFQFPN 32 5x5x0.55,Arm Cortex-M0+,32,-,-,64,3072,20,5,-,"2xWDG,RTC,SysTick",10,-,-,2,25,-,-,-,3,2,1,-,4,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,"125,85" +STM32L071KB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",10,-,-,2,40,-,-,-,3,2,1,-,4,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,"125,85" +STM32L071KZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",10,-,-,2,25,-,-,-,2,2,1,-,4,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,"125,85" +STM32L071RB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,-,2,51,-,-,-,2,2,1,-,4,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L071RZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,-,2,51,-,-,-,2,2,1,-,4,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L071V8,"Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU",Active,LQFP 100 14x14x1.4,Arm Cortex-M0+,32,-,-,64,3072,20,5,-,"2xWDG,RTC,SysTick",16,-,-,2,84,-,-,-,3,2,1,-,4,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,85 +STM32L071VB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU",Active,LQFP 100 14x14x1.4,Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,-,2,84,-,-,-,2,2,1,-,4,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L071VZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU",Active,LQFP 100 14x14x1.4,Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,-,2,84,-,-,-,2,2,1,-,4,1,-,-,-,-,-,-,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L072CB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 48 7x7x1.4,WLCSP 49L DIE 447 P 0.4 MM",Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",13,-,2,2,40,-,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,85 +STM32L072KB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB",Active,UFQFPN 32 5x5x0.55,Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",10,-,2,2,25,-,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"105,125,85" +STM32L072RB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2,UFBGA 5X5X0.6 64L P 0.5 MM",Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,51,-,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"125,85" +STM32L072RZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2,UFBGA 5X5X0.6 64L P 0.5 MM",Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,51,-,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,85 +STM32L072V8,"Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M0+,32,-,-,64,3072,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,84,-,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,85 +STM32L072VB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB",Active,LQFP 100 14x14x1.4,Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,84,-,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,85 +STM32L072VZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,84,-,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,85 +STM32L073CB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",13,-,2,2,40,LCD 4x18,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,85 +STM32L073CZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",13,-,2,2,40,LCD 4x18,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"125,85" +STM32L073RB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,51,LCD 4x32/8x28,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,85 +STM32L073RZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192 Kbytes Flash, 32 MHz CPU, USB, LCD",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2,UFBGA 5X5X0.6 64L P 0.5 MM",Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,51,LCD 4x32/8x28,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"125,85" +STM32L073V8,"Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU, USB, LCD",Active,LQFP 100 14x14x1.4,Arm Cortex-M0+,32,-,-,64,3072,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,84,LCD 4x52/8x48,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L073VB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD",Active,LQFP 100 14x14x1.4,Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,84,LCD 4x52/8x48,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"105,85" +STM32L073VZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,84,LCD 4x52/8x48,-,-,3,2,1,USB Device,4,1,-,-,-,-,-,true,-,1.65,3.6,0.29,87,-40,"125,85" +STM32L081CB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, AES",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",13,-,-,2,40,-,-,-,3,2,1,-,4,1,-,-,-,-,AES,-,-,1.65,3.6,0.29,87,-40,85 +STM32L081CZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, AES",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",13,-,-,2,40,-,-,-,2,2,1,-,4,1,-,-,-,-,AES,-,-,1.65,3.6,0.29,87,-40,85 +STM32L081KZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, AES",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",10,-,-,2,25,-,-,-,2,2,1,-,4,1,-,-,-,-,AES,-,-,1.65,3.6,0.29,87,-40,85 +STM32L082CZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, AES",Active,WLCSP 49L DIE 447 P 0.4 MM,Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",13,-,2,2,40,-,-,-,3,2,1,USB Device,4,1,-,-,-,-,AES,true,-,1.65,3.6,0.29,87,-40,"125,85" +STM32L082KB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, AES",Active,UFQFPN 32 5x5x0.55,Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",10,-,2,2,25,-,-,-,3,2,1,USB Device,4,1,-,-,-,-,AES,true,-,1.65,3.6,0.29,87,-40,85 +STM32L082KZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, AES",Active,"LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55",Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",10,-,2,2,25,-,-,-,3,2,1,USB Device,4,1,-,-,-,-,AES,true,-,1.65,3.6,0.29,87,-40,85 +STM32L083CB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD, AES",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",10,-,2,2,40,LCD 4x18,-,-,3,2,1,USB Device,4,1,-,-,-,-,AES,true,-,1.65,3.6,0.29,87,-40,85 +STM32L083CZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD, AES",Active,LQFP 48 7x7x1.4,Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",10,-,2,2,40,LCD 4x18,-,-,3,2,1,USB Device,4,1,-,-,-,-,AES,true,-,1.65,3.6,0.29,87,-40,85 +STM32L083RB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD, AES",Active,TFBGA 64 5x5x1.2,Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,51,LCD 4x32/8x28,-,-,3,2,1,USB Device,4,1,-,-,-,-,AES,true,-,1.65,3.6,0.29,87,-40,85 +STM32L083RZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD, AES",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,51,LCD 4x32/8x28,-,-,3,2,1,USB Device,4,1,-,-,-,-,AES,true,-,1.65,3.6,0.29,87,-40,85 +STM32L083V8,"Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU, USB, LCD, AES",Active,LQFP 100 14x14x1.4,Arm Cortex-M0+,32,-,-,64,3072,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,84,LCD 4x52/8x48,-,-,3,2,1,USB Device,4,1,-,-,-,-,AES,true,-,1.65,3.6,0.29,87,-40,85 +STM32L083VB,"Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD, AES",Active,LQFP 100 14x14x1.4,Arm Cortex-M0+,32,-,-,128,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,84,LCD 4x52/8x48,-,-,3,2,1,USB Device,4,1,-,-,-,-,AES,true,-,1.65,3.6,0.29,87,-40,85 +STM32L083VZ,"Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD, AES",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M0+,32,-,-,192,6144,20,7,-,"2xWDG,RTC,SysTick",16,-,2,2,84,LCD 4x52/8x48,-,-,3,2,1,USB Device,4,1,-,-,-,-,AES,true,-,1.65,3.6,0.29,87,-40,85 +STM32L100C6-A,"Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M3,32,-,-,32,2048,4,6,-,"2 x WDG,24-bit down counter,RTC",14,-,2,2,37,LCD 4x16,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.8,3.6,0.3,185,-40,85 +STM32L100R8-A,"Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,32,-,-,64,2048,8,6,-,"2 x WDG,24-bit down counter,RTC",20,-,2,2,51,LCD 4x32/8x28,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.8,3.6,0.3,185,-40,85 +STM32L100RB-A,"Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,32,-,-,128,2048,16,6,-,"2 x WDG,24-bit down counter,RTC",20,-,2,2,51,LCD 4x32/8x28,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.8,3.6,0.3,185,-40,85 +STM32L100RC,"Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,32,-,-,256,4096,16,6,-,"2 x WDG,24-bit down counter,RTC",20,-,2,2,51,LCD 4x32/8x28,-,-,2,3,-,USB Device,3,-,-,-,-,-,-,-,-,1.8,3.6,0.3,185,-40,85 +STM32L151C6-A,"Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,32,-,-,32,4096,16,6,-,"2 x WDG,RTC,SysTick",14,-,2,2,37,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151C8-A,"Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,32,-,-,64,4096,32,6,-,"2 x WDG,RTC,SysTick",14,-,2,2,37,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151CB,"Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,32,-,-,128,4096,16,6,-,"2 x WDG,RTC,SysTick",14,-,2,2,37,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151CB-A,"Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,32,-,-,128,4096,32,6,-,"2 x WDG,RTC,SysTick",14,-,2,2,37,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151CC,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",14,-,2,2,37,-,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,185,-40,"105,85" +STM32L151QC,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",40,-,2,2,109,-,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151QD,"Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M3,32,-,-,384,12288,48,8,1,"2xWDG,RTC,SysTick",40,-,2,2,109,-,-,-,2,3,2,USB Device,5,-,-,3,-,"FMC,SDIO",-,-,-,1.65,3.6,0.3,230,-40,85 +STM32L151QE,"Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M3,32,-,-,512,16384,80,8,1,"2xWDG,RTC,SysTick",40,-,2,2,109,-,-,-,2,3,2,USB Device,5,-,-,2,-,-,-,-,-,1.65,3.6,0.3,195,-40,85 +STM32L151R6-A,"Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,32,-,-,32,4096,16,6,-,"2 x WDG,RTC,SysTick",20,-,2,2,51,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151R8-A,"Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,32,-,-,64,4096,32,6,-,"2 x WDG,RTC,SysTick",20,-,2,2,51,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151RB,"Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,32,-,-,128,4096,16,6,-,"2 x WDG,RTC,SysTick",20,-,2,2,51,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151RB-A,"Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,32,-,-,128,4096,32,6,-,"2 x WDG,RTC,SysTick",20,-,2,2,51,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,"105,85" +STM32L151RC,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp",Active,"LQFP 64 10x10x1.4,WLCSP 64 BALLS DIE 436 P 0.4 MM",Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",21,-,2,2,51,-,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151RD,"Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp",Active,"LQFP 64 10x10x1.4,WLCSP 64 BALLS DIE 436 P 0.4 MM",Arm Cortex-M3,32,-,-,384,12288,48,8,1,"2 x WDG,RTC,SysTick",21,-,2,2,51,-,-,-,2,3,2,USB Device,5,-,-,3,-,"FMC,SDIO",-,-,-,1.65,3.6,0.3,230,-40,"105,85" +STM32L151RE,"Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,32,-,-,512,16384,80,8,1,"2xWDG,RTC,SysTick",21,-,2,2,51,-,-,-,2,3,2,USB Device,5,-,-,2,-,-,-,-,-,1.65,3.6,0.3,195,-40,85 +STM32L151UC,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp",Active,WLCSP 63L (7X9) DIE 427 P 0.4 MM,Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",21,-,2,2,51,-,-,-,2,3,2,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,"105,85" +STM32L151V8-A,"Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M3,32,-,-,64,4096,32,6,-,"2 x WDG,RTC,SysTick",24,-,2,2,83,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151VB-A,"Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M3,32,-,-,128,4096,32,6,-,"2 x WDG,RTC,SysTick",24,-,2,2,83,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151VC,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",25,-,2,2,83,-,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151VD,"Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,32,-,-,384,12288,48,8,1,"2 x WDG,RTC,SysTick",25,-,2,2,83,-,-,-,2,3,2,USB Device,5,-,-,3,-,"FMC,SDIO",-,-,-,1.65,3.6,0.3,230,-40,85 +STM32L151VD-X,"Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp",Active,"LQFP 100 14x14x1.4,WLCSP 104L DIE 437 P 0.4MM",Arm Cortex-M3,32,-,-,384,16384,80,8,1,"2xWDG,RTC,SysTick",25,-,2,2,83,-,-,-,2,3,2,USB Device,5,-,-,2,-,"FMC,SDIO",-,-,-,1.65,3.6,0.3,195,-40,"105,85" +STM32L151VE,"Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, MCD, USB, 2xOp-amp",Active,"LQFP 100 14x14x1.4,WLCSP 104L DIE 437 P 0.4MM",Arm Cortex-M3,32,-,-,512,16384,80,8,1,"2xWDG,RTC,SysTick",25,-,2,2,83,-,-,-,2,3,2,USB Device,5,-,-,2,-,-,-,-,-,1.65,3.6,0.3,195,-40,"105,85" +STM32L151ZC,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",40,-,2,2,115,-,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151ZD,"Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,32,-,-,384,12288,48,8,1,"2xWDG,RTC,SysTick",40,-,2,2,115,-,-,-,2,3,2,USB Device,5,-,-,3,-,"FMC,SDIO",-,-,-,1.65,3.6,0.3,230,-40,85 +STM32L151ZE,"Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,32,-,-,512,16384,80,8,1,"2xWDG,RTC,SysTick",40,-,2,2,115,-,-,-,2,3,2,USB Device,5,-,-,2,-,-,-,-,-,1.65,3.6,0.3,195,-40,85 +STM32L152C6-A,"Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,32,-,-,32,4096,16,6,-,"2 x WDG,RTC,SysTick",14,-,2,2,37,LCD 4x16,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152C8-A,"Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,32,-,-,64,4096,32,6,-,"2 x WDG,RTC,SysTick",14,-,2,2,36,LCD 4x16,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152CB-A,"Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,32,-,-,128,4096,32,6,-,"2 x WDG,RTC,SysTick",14,-,2,2,37,LCD 4x16,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152CC,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,32,-,-,256,8192,32,6,1,"2xWDG,RTC,SysTick",14,-,2,2,37,LCD 4x18,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152QC,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",40,-,2,2,109,LCD 4x44/8x40,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152QD,"Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M3,32,-,-,384,12288,48,8,1,"2xWDG,RTC,SysTick",40,-,2,2,109,LCD 4x44/8x40,-,-,2,3,2,USB Device,5,-,-,3,-,"FMC,SDIO",-,-,-,1.65,3.6,0.3,230,-40,85 +STM32L152QE,"Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M3,32,-,-,512,16384,80,8,1,"2xWDG,RTC,SysTick",40,-,2,2,109,LCD 4x44/8x40,-,-,2,3,2,USB Device,5,-,-,2,-,-,-,-,-,1.65,3.6,0.3,195,-40,85 +STM32L152R6-A,"Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,32,-,-,32,4096,16,6,-,"2xWDG,RTC,SysTick",20,-,2,2,51,LCD 4x32/8x28,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152R8-A,"Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,32,-,-,64,4096,32,6,-,"2 x WDG,RTC,SysTick",20,-,2,2,51,LCD 4x32/8x28,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152RB-A,"Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB",Active,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,32,-,-,128,4096,32,6,-,"2xWDG,RTC,SysTick",20,-,2,2,51,LCD 4x32/8x28,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152RC,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",21,-,2,2,51,LCD 4x32/8x28,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152RD,"Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp",Active,"LQFP 64 10x10x1.4,WLCSP 64 BALLS DIE 436 P 0.4 MM",Arm Cortex-M3,32,-,-,384,12288,48,8,1,"2xWDG,RTC,SysTick",21,-,2,2,51,LCD 4x32/8x28,-,-,2,3,2,USB Device,5,-,-,3,-,SDIO,-,-,-,1.65,3.6,0.3,230,-40,85 +STM32L152RE,"Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,32,-,-,512,16384,80,8,1,"2xWDG,RTC,SysTick",21,-,2,2,51,LCD 4x32/8x28,-,-,2,3,2,USB Device,5,-,-,2,-,-,-,-,-,1.65,3.6,0.3,195,-40,85 +STM32L152UC,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp",Active,WLCSP 63L (7X9) DIE 427 P 0.4 MM,Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",21,-,2,-,51,LCD 4x32/8x28,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,177,-40,85 +STM32L152V8-A,"Ultra-low-power Cortex-M3 MCU with 64 Kbytes Flash, RTC, LCD, USB",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M3,32,-,-,64,4096,32,6,-,"2 x WDG,RTC,SysTick",24,-,2,2,82,LCD 4x44/8x40,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152VB-A,"Ultra-low-power Cortex-M3 MCU with 128 Kbytes Flash, RTC, LCD, USB",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M3,32,-,-,128,4096,32,6,-,"2 x WDG,RTC,SysTick",24,-,2,2,83,LCD 4x44/8x40,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152VC,"Ultra-low-power Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2 x WDG,RTC,SysTick",25,-,2,2,83,LCD 4x44/8x40,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152VD,"Ultra-low-power Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,32,-,-,384,12288,48,8,1,"2xWDG,RTC,SysTick",25,-,2,2,83,LCD 4x44/8x40,-,-,2,3,2,USB Device,5,-,-,3,-,"FMC,SDIO",-,-,-,1.65,3.6,0.3,230,-40,85 +STM32L152VD-X,"Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,32,-,-,384,16384,80,8,1,"2xWDG,RTC,SysTick",25,-,2,2,83,LCD 4x44/8x40,-,-,2,3,2,USB Device,5,-,-,2,-,"FMC,SDIO",-,-,-,1.65,3.6,0.3,195,-40,85 +STM32L152VE,"Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp",Active,"LQFP 100 14x14x1.4,WLCSP 104L DIE 437 P 0.4MM",Arm Cortex-M3,32,-,-,512,16384,80,8,1,"2xWDG,RTC,SysTick",25,-,2,2,83,LCD 4x44/8x40,-,-,2,3,2,USB Device,5,-,-,2,-,-,-,-,-,1.65,3.6,0.3,195,-40,85 +STM32L152ZC,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2 x WDG,RTC,SysTick",40,-,2,2,115,LCD 4x44/8x40,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152ZD,"Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,32,-,-,384,12288,48,8,1,"2xWDG,RTC,SysTick",40,-,2,2,115,LCD 4x44/8x40,-,-,2,3,2,USB Device,5,-,-,3,-,"FMC,SDIO",-,-,-,1.65,3.6,0.3,230,-40,85 +STM32L152ZE,"Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,32,-,-,512,16384,80,8,1,"2xWDG,RTC,SysTick",40,-,2,2,115,LCD 4x44/8x40,-,-,2,3,2,USB Device,5,-,-,2,-,-,-,-,-,1.65,3.6,0.3,195,-40,85 +STM32L162QD,"Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp, AES",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M3,32,-,-,384,12288,48,8,1,"2 x WDG,RTC,SysTick",40,-,2,2,109,LCD 4x44/8x40,-,-,2,3,2,USB Device,5,-,-,3,-,"FSMC,SDIO",AES,-,-,1.65,3.6,0.3,230,-40,85 +STM32L162RC,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",21,-,2,2,51,LCD 4x32/8x28,-,-,2,3,2,USB Device,3,-,-,2,-,-,AES,-,-,1.65,3.6,0.3,185,-40,85 +STM32L162RD,"Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp, AES",Active,"LQFP 64 10x10x1.4,WLCSP 64 BALLS DIE 436 P 0.4 MM",Arm Cortex-M3,32,-,-,384,12288,48,8,1,"2xWDG,RTC,SysTick",21,-,2,2,51,LCD 4x32/8x28,-,-,2,3,2,USB Device,5,-,-,3,-,SDIO,AES,-,-,1.65,3.6,0.3,230,-40,85 +STM32L162RE,"Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES",Active,LQFP 64 10x10x1.4,Arm Cortex-M3,32,-,-,512,16384,80,8,1,"2xWDG,RTC,SysTick",21,-,2,2,51,LCD 4x32/8x28,-,-,2,3,2,USB Device,5,-,-,2,-,-,AES,-,-,1.65,3.6,0.3,195,-40,85 +STM32L162VC,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",25,-,2,2,83,LCD 4x44/8x40,-,-,2,3,2,USB Device,3,-,-,2,-,-,AES,-,-,1.65,3.6,0.3,185,-40,85 +STM32L162VD,"Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp, AES",Active,LQFP 100 14x14x1.4,Arm Cortex-M3,32,-,-,384,12288,48,8,1,"2 x WDG,RTC,SysTick",25,-,2,2,83,LCD 4x44/8x40,-,-,2,3,2,USB Device,5,-,-,3,-,"FMC,SDIO",AES,-,-,1.65,3.6,0.3,230,-40,85 +STM32L162VD-X,"Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES",Active,WLCSP 104L DIE 437 P 0.4MM,Arm Cortex-M3,32,-,-,384,16384,80,8,1,"2xWDG,RTC,SysTick",25,-,2,2,83,LCD 4x44/8x40,-,-,2,3,2,USB Device,5,-,-,2,-,"FMC,SDIO",AES,-,-,1.65,3.6,0.3,195,-40,85 +STM32L162VE,"Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES",Active,"LQFP 100 14x14x1.4,WLCSP 104L DIE 437 P 0.4MM",Arm Cortex-M3,32,-,-,512,16384,80,8,1,"2xWDG,RTC,SysTick",25,-,2,2,83,LCD 4x44/8x40,-,-,2,3,2,USB Device,5,-,-,2,-,-,AES,-,-,1.65,3.6,0.3,195,-40,85 +STM32L162ZD,"Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp, AES",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,32,-,-,384,12288,48,8,1,"2xWDG,RTC,SysTick",40,-,2,2,115,LCD 4x44/8x40,-,-,2,3,2,USB Device,5,-,-,3,-,"FMC,SDIO",AES,-,-,1.65,3.6,0.3,230,-40,85 +STM32L162ZE,"Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES",Active,LQFP 144 20x20x1.4,Arm Cortex-M3,32,-,-,512,16384,80,8,1,"2xWDG,RTC,SysTick",40,-,2,2,115,LCD 4x44/8x40,-,-,2,3,2,USB Device,5,-,-,2,-,-,AES,-,-,1.65,3.6,0.3,195,-40,85 +STM32L431CB,Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash,Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM",Arm Cortex-M4,80,-,-,128,-,64,7,1,"2xWDG,RTC,SysTick",10,-,2,2,38,-,1,-,3,3,-,-,3,1,-,1,SAI,Quad SPI,-,true,-,1.71,3.6,0.01,80,-40,"105,85" +STM32L431CC,Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash,Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM",Arm Cortex-M4,80,-,-,256,-,64,7,1,"2xWDG,RTC,SysTick",10,-,2,2,38,-,1,-,3,3,-,-,3,1,-,1,SAI,Quad SPI,-,true,-,1.71,3.6,0.01,80,-40,85 +STM32L431KB,Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash,Active,UFQFPN 32 5x5x0.55,Arm Cortex-M4,80,-,-,128,-,64,7,1,"2xWDG,RTC,SysTick",10,-,2,2,26,-,1,-,2,2,-,-,2,1,-,1,SAI,Quad SPI,-,true,-,1.71,3.6,0.01,80,-40,85 +STM32L431KC,Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash,Active,UFQFPN 32 5x5x0.55,Arm Cortex-M4,80,-,-,256,-,64,7,1,"2xWDG,RTC,SysTick",10,-,2,2,26,-,1,-,2,2,-,-,2,1,-,1,SAI,Quad SPI,-,true,-,1.71,3.6,0.01,80,-40,85 +STM32L431RB,Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash,Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM",Arm Cortex-M4,80,-,-,128,-,64,7,1,"2xWDG,RTC,SysTick",16,-,2,2,52,-,1,-,3,3,-,-,3,1,-,1,SAI,"Quad SPI,SDIO",-,true,-,1.71,3.6,0.01,80,-40,"125,85" +STM32L431RC,Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash,Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM",Arm Cortex-M4,80,-,-,256,-,64,7,1,"2xWDG,RTC,SysTick",16,-,2,2,52,-,1,-,3,3,-,-,3,1,-,1,SAI,"Quad SPI,SDIO",-,true,-,1.71,3.6,0.01,80,-40,85 +STM32L431VC,Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash,Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,80,-,-,256,-,64,7,1,"2xWDG,RTC,SysTick",16,-,2,2,83,-,1,-,3,3,-,-,3,1,-,1,SAI,"Quad SPI,SDIO",-,true,-,1.71,3.6,0.01,-,-40,85 +STM32L432KB,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash, USB",Active,UFQFPN 32 5x5x0.55,Arm Cortex-M4,80,-,-,128,-,64,7,1,"2xWDG,RTC,SysTick",10,-,2,2,26,-,1,-,2,2,-,USB Device,2,1,-,1,SAI,Quad SPI,-,true,-,1.71,3.6,0.01,80,-40,85 +STM32L432KC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB",Active,UFQFPN 32 5x5x0.55,Arm Cortex-M4,80,-,-,256,-,64,7,1,"2xWDG,RTC,SysTick",10,-,2,2,26,-,1,-,2,2,-,USB Device,2,1,-,1,SAI,Quad SPI,-,true,-,1.71,3.6,0.01,80,-40,85 +STM32L433CB,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash, USB FS, LCD",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM",Arm Cortex-M4,80,-,-,128,-,64,7,1,"2xWDG,RTC,SysTick",10,-,2,2,38,LCD 4x19,1,-,3,3,-,USB Device,3,1,-,1,SAI,Quad SPI,-,true,-,1.71,3.6,0.01,80,-40,"105,85" +STM32L433CC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB",Active,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM",Arm Cortex-M4,80,-,-,256,-,64,7,1,"2xWDG,RTC,SysTick",10,-,2,2,38,LCD 4x19,1,-,3,3,-,USB Device,3,1,-,1,SAI,Quad SPI,-,true,-,1.71,3.6,0.01,80,-40,"125,85" +STM32L433RB,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash, USB FS, LCD",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM",Arm Cortex-M4,80,-,-,128,-,64,7,1,"2xWDG,RTC,SysTick",16,-,2,2,52,LCD 4x32/8x28,1,-,3,3,-,USB Device,3,1,-,1,SAI,"Quad SPI,SDIO",-,true,-,1.71,3.6,0.01,80,-40,85 +STM32L433RC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM",Arm Cortex-M4,80,-,-,256,-,64,7,1,"2xWDG,RTC,SysTick",16,-,2,2,52,LCD 4x32/8x28,1,-,3,3,-,USB Device,3,-,-,1,SAI,"Quad SPI,SDIO",-,true,External,1.71,3.6,0.01,80,-40,"125,85" +STM32L433VC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,80,-,-,256,-,64,7,1,"2xWDG,RTC,SysTick",16,-,2,2,83,LCD 4x44/8x40,1,-,3,3,-,USB Device,3,1,-,1,SAI,"Quad SPI,SDIO",-,true,-,1.71,3.6,0.01,80,-40,"125,85" +STM32L442KC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB, AES-256, DFSDM",Active,UFQFPN 32 5x5x0.55,Arm Cortex-M4,80,-,-,256,-,64,7,1,"2xWDG,RTC,SysTick",10,-,2,2,26,-,1,-,2,2,-,USB Device,2,1,-,1,SAI,Quad SPI,AES,true,-,1.71,3.6,0.01,80,-40,85 +STM32L443CC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB, AES-256",Active,"LQFP 48 7x7x1.4,THIN WLCSP 49L 435 PITCH 0.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM",Arm Cortex-M4,80,-,-,256,-,64,7,1,"2xWDG,RTC,SysTick",10,-,2,2,38,LCD 4x19,1,-,3,3,-,USB Device,3,1,-,1,SAI,Quad SPI,AES,true,-,1.71,3.6,0.01,80,-40,85 +STM32L443RC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB, AES-256",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM",Arm Cortex-M4,80,-,-,256,-,64,7,1,"2xWDG,RTC,SysTick",16,-,2,2,52,LCD 4x32/8x28,1,-,3,3,-,USB Device,3,1,-,1,SAI,"Quad SPI,SDIO",AES,true,-,1.71,3.6,0.01,80,-40,"125,85" +STM32L443VC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB, AES-256, DFSDM",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,80,-,-,256,-,64,7,1,"2xWDG,RTC,SysTick",16,-,2,2,83,LCD 4x44/8x40,1,-,3,3,-,USB Device,3,1,-,1,SAI,"Quad SPI,SDIO",AES,true,-,1.71,3.6,0.01,80,-40,85 +STM32L451CC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, DFSDM",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M4,80,-,-,256,-,160,8,1,"2xWDG,RTC,SysTick",10,-,1,2,38,-,1,-,4,3,-,-,4,1,-,1,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.71,3.6,0.01,80,-40,"125,85" +STM32L451CE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M4,80,-,-,512,-,160,8,1,"2xWDG,RTC,SysTick",10,-,1,2,38,-,1,-,4,3,-,-,4,1,-,1,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.71,3.6,0.01,80,-40,85 +STM32L451RC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, DFSDM",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM",Arm Cortex-M4,80,-,-,256,-,-,8,1,"2xWDG,RTC,SysTick",16,-,1,2,52,-,1,-,4,3,-,-,4,1,-,1,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.71,3.6,0.01,80,-40,85 +STM32L451RE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 462 PITCH 0.4",Arm Cortex-M4,80,-,-,512,-,160,8,1,"2xWDG,RTC,SysTick",16,-,1,2,52,-,1,-,4,3,-,-,4,1,-,1,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.71,3.6,0.01,80,-40,85 +STM32L451VC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, DFSDM",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,80,-,-,256,-,160,8,1,"2xWDG,RTC,SysTick",16,-,1,2,83,-,1,-,4,3,-,-,4,1,-,1,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.71,3.6,0.01,80,-40,85 +STM32L451VE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,80,-,-,512,-,160,8,1,"2xWDG,RTC,SysTick",16,-,1,2,83,-,1,-,4,3,-,-,4,1,-,1,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.71,3.6,0.01,80,-40,85 +STM32L452CC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB Device, DFSDM",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M4,80,-,-,256,-,160,8,1,"2xWDG,RTC,SysTick",10,-,1,2,38,-,1,-,4,3,-,USB Device,4,1,-,1,SAI,"DFSDM,FMC,Quad SPI",-,-,-,1.71,3.6,0.01,80,-40,85 +STM32L452CE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB Device, DFSDM",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M4,80,-,-,512,-,160,8,1,"2xWDG,RTC,SysTick",10,-,1,2,38,LCD 4x44/8x40,1,-,4,3,-,USB Device,4,1,-,1,SAI,"DFSDM,FMC,Quad SPI",-,-,-,1.71,3.6,0.01,80,-40,"125,85" +STM32L452RC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB Device, DFSDM",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM",Arm Cortex-M4,80,-,-,256,-,160,8,1,"2xWDG,RTC,SysTick",16,-,1,2,52,-,1,-,4,3,-,USB Device,4,1,-,1,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.71,3.6,0.01,80,-40,85 +STM32L452RE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB Device, DFSDM",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64,WLCSP 64L DIE 462 PITCH 0.4",Arm Cortex-M4,80,-,-,512,-,160,8,1,"2xWDG,RTC,SysTick",16,-,1,2,52,LCD 4x44/8x40,1,-,4,3,-,USB Device,4,1,-,1,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,-,External,1.71,3.6,0.01,80,-40,"125,85" +STM32L452VC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB Device, DFSDM",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,80,-,-,256,-,160,8,1,"2xWDG,RTC,SysTick",16,-,1,2,83,-,1,-,4,3,-,USB Device,4,1,-,1,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.71,3.6,0.01,80,-40,85 +STM32L452VE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB Device, DFSDM",Active,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M4,80,-,-,512,-,160,8,1,"2xWDG,RTC,SysTick",16,-,1,2,83,LCD 4x44/8x40,1,-,4,3,-,USB Device,4,1,-,1,SAI,"FMC,Quad SPI,SDIO",-,-,-,1.71,3.6,0.01,80,-40,"125,85" +STM32L462CE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 kbytes Flash, USB Device, AES-256, DFSDM",Active,UFQFPN 48 7x7x0.55,Arm Cortex-M4,80,-,-,512,-,160,7,1,"2xWDG,RTC,SysTick",10,-,1,-,38,-,-,-,-,-,-,USB Device,5,1,-,1,SAI,"DFSDM,FMC,Quad SPI",AES,-,-,-,-,0.03,80,-40,"125,85" +STM32L462RE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 kbytes Flash, USB Device, AES-256, DFSDM",Active,"LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 462 PITCH 0.4",Arm Cortex-M4,80,-,-,512,-,160,7,1,"2xWDG,RTC,SysTick",16,-,1,-,52,-,-,-,-,-,-,USB Device,4,1,-,1,SAI,"DFSDM,FMC,Quad SPI,SDIO",AES,-,-,1.71,-,0.01,100,-40,85 +STM32L471QE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M4,80,-,-,512,-,128,11,2,"2xWDG,RTC,SysTick",19,-,2,2,109,-,1,-,3,3,-,-,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,"105,85" +STM32L471QG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, DFSDM",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",19,-,2,2,109,-,1,-,3,3,-,-,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L471RE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,80,-,-,512,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,51,-,1,-,3,3,-,-,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L471RG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, DFSDM",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,51,-,1,-,3,3,-,-,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L471VE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,80,-,-,512,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,82,-,1,-,3,3,-,-,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L471VG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, DFSDM",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,82,-,1,-,3,3,-,-,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,"125,85" +STM32L471ZG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, DFSDM",Active,"LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM",Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",24,-,2,2,114,-,1,-,3,3,-,-,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L475RC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB OTG, DFSDM",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,80,-,-,256,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,51,-,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,"105,125,85" +STM32L475RE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, DFSDM",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,80,-,-,512,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,51,-,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L475RG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, DFSDM",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,51,-,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,"105,85" +STM32L475VC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB OTG, DFSDM",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,80,-,-,256,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,82,-,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L475VE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, DFSDM",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,80,-,-,512,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,82,-,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L475VG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, DFSDM",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,82,-,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L476JE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM",Active,WLCSP 72L DIE 415 PITCH 0.4 MM,Arm Cortex-M4,80,-,-,512,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,57,LCD 4x32/8x28,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L476JG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM",Active,WLCSP 72L DIE 415 PITCH 0.4 MM,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,57,LCD 4x32/8x28,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,External,1.71,3.6,0.03,100,-40,"105,125,85" +STM32L476ME,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM",Active,WLCSP 81L DIE 415 P 0.4 MM,Arm Cortex-M4,80,-,-,512,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,65,LCD 4x32/8x30,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L476MG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM",Active,WLCSP 81L DIE 415 P 0.4 MM,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,65,LCD 4x32/8x30,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L476QE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M4,80,-,-,512,-,128,11,2,"2xWDG,RTC,SysTick",19,-,2,2,109,LCD 4x44/8x40,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L476QG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",19,-,2,2,109,LCD 4x44/8x40,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,External,1.71,3.6,0.03,100,-40,"125,85" +STM32L476RC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB OTG, DFSDM",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,80,-,-,256,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,51,LCD 4x32/8x28,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L476RE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,80,-,-,512,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,51,LCD 4x32/8x28,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L476RG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,51,LCD 4x32/8x28,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,"125,85" +STM32L476VC,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB OTG, DFSDM",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,80,-,-,256,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,82,LCD 4x44/8x40,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L476VG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,82,LCD 4x44/8x40,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,"105,85" +STM32L476ZE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,80,-,-,512,-,128,11,2,"2xWDG,RTC,SysTick",24,-,2,2,114,LCD 4x44/8x40,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,85 +STM32L476ZG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM",Active,"LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM",Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",24,-,2,2,114,LCD 4x44/8x40,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"FSMC,DFSDM,Quad SPI,SDIO",-,true,-,1.71,3.6,0.03,100,-40,"125,85" +STM32L486JG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM",Active,WLCSP 72L DIE 415 PITCH 0.4 MM,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,57,LCD 4x32/8x28,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",AES,true,-,1.71,3.6,0.03,100,-40,85 +STM32L486QG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",19,-,2,2,109,LCD 4x44/8x40,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",AES,true,-,1.71,3.6,0.03,100,-40,85 +STM32L486RG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,51,LCD 4x32/8x28,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",AES,true,-,1.71,3.6,0.03,100,-40,85 +STM32L486VG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",16,-,2,2,82,LCD 4x44/8x40,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",AES,true,-,1.71,3.6,0.03,100,-40,85 +STM32L486ZG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,80,-,-,1024,-,128,11,2,"2xWDG,RTC,SysTick",24,-,2,2,114,LCD 4x44/8x40,1,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"DFSDM,FMC,Quad SPI,SDIO",AES,true,-,1.71,3.6,0.03,100,-40,"125,85" +STM32L496AE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,80,-,-,512,-,320,11,2,"2xWDG,RTC,SysTick",24,-,2,2,136,LCD 4x44/8x40,2,-,4,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.71,3.6,0.03,90,-40,85 +STM32L496AG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,80,-,-,1024,-,320,11,2,"2xWDG,RTC,SysTick",24,-,2,2,136,LCD 4x44/8x40,2,-,4,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO",-,-,External,1.71,3.6,0.03,90,-40,"125,85" +STM32L496QE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M4,80,-,-,512,-,320,11,2,"2xWDG,RTC,SysTick",19,-,2,2,110,LCD 4x44/8x40,2,-,4,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.71,3.6,0.03,90,-40,85 +STM32L496QG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M4,80,-,-,1024,-,-,11,2,"2xWDG,RTC,SysTick",19,-,2,2,110,LCD 4x44/8x40,2,-,4,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO",-,-,External,1.71,3.6,0.03,90,-40,"125,85" +STM32L496RE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,80,-,-,512,-,320,11,2,"2xWDG,RTC,SysTick",16,-,2,-,52,LCD 4x44/8x40,2,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.71,3.6,0.03,90,-40,85 +STM32L496RG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,80,-,-,1024,-,-,11,2,"2xWDG,RTC,SysTick",16,-,2,2,52,LCD 4x44/8x40,2,-,-,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO",-,-,External,1.71,3.6,0.03,90,-40,"125,85" +STM32L496VE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,80,-,-,512,-,320,11,2,"2xWDG,RTC,SysTick",16,-,2,2,83,LCD 4x44/8x40,2,-,4,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.71,3.6,0.03,90,-40,85 +STM32L496VG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM",Active,"LQFP 100 14x14x1.4,WLCSP 100L PITCH 0.4 DIE 461",Arm Cortex-M4,80,-,-,1024,-,-,11,2,"2xWDG,RTC,SysTick",16,-,2,2,83,LCD 4x44/8x40,2,-,4,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO",-,-,External,1.71,3.6,0.03,90,-40,"125,85" +STM32L496ZE,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,80,-,-,512,-,320,11,2,"2xWDG,RTC,SysTick",24,-,2,2,115,LCD 4x44/8x40,2,-,4,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO",-,-,-,1.71,3.6,0.03,90,-40,85 +STM32L496ZG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,80,-,-,1024,-,320,11,2,"2xWDG,RTC,SysTick",24,-,2,2,115,LCD 4x44/8x40,2,-,4,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO",-,-,External,1.71,3.6,0.03,90,-40,"125,85" +STM32L4A6AG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,80,-,-,1024,-,320,11,2,"2xWDG,RTC,SysTick",24,-,2,2,136,LCD 4x44/8x40,2,-,4,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO","AES,SHA",-,External,1.71,3.6,0.03,90,-40,85 +STM32L4A6QG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M4,80,-,-,1024,-,320,11,2,"2xWDG,RTC,SysTick",19,-,2,2,110,LCD 4x44/8x40,2,-,4,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO","AES,SHA",-,External,1.71,3.6,0.03,90,-40,85 +STM32L4A6RG,"Ultra-low-power with FPU Arm Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM",Active,LQFP 64 10x10x1.4,Arm Cortex-M4,80,-,-,1024,-,320,11,2,"2xWDG,RTC,SysTick",16,-,2,2,52,LCD 4x44/8x40,2,-,3,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO","AES,SHA",-,External,1.71,3.6,0.03,90,-40,85 +STM32L4A6VG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM",Active,"LQFP 100 14x14x1.4,WLCSP 100L PITCH 0.4 DIE 461",Arm Cortex-M4,80,-,-,1024,-,320,11,2,"2xWDG,RTC,SysTick",16,-,2,2,83,LCD 4x44/8x40,2,-,4,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO","AES,SHA",-,-,1.71,3.6,0.03,90,-40,85 +STM32L4A6ZG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,80,-,-,1024,-,320,11,2,"2xWDG,RTC,SysTick",24,-,2,2,115,LCD 4x44/8x40,2,-,4,3,-,USB OTG FS,5,1,-,2,SAI,"Camera IF,DFSDM,FMC,Quad SPI,SDIO","AES,SHA",-,External,1.71,3.6,0.03,90,-40,85 +STM32L4R5AG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, CHROM-ART",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,120,-,-,1024,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,140,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"Camera IF,DFSDM,FMC,SD/MMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4R5AI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,140,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,External,1.71,3.6,0.02,112,-40,85 +STM32L4R5QI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,110,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,External,1.71,3.6,0.02,112,-40,85 +STM32L4R5VG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, CHROM-ART",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,120,-,-,1024,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,83,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4R5VI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,83,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4R5ZG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, CHROM-ART",Active,"LQFP 144 20x20x1.4,WLCSP 144L DIE 470 PITCH 0.4",Arm Cortex-M4,120,-,-,1024,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,115,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4R5ZI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART",Active,"LQFP 144 20x20x1.4,WLCSP 144L DIE 470 PITCH 0.4",Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,115,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4R7AI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,140,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4R7VI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,83,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4R7ZI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,115,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4R9AG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,120,-,-,1024,-,640,11,2,"2xWDG,RTC,SysTick",14,-,2,2,131,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"Camera IF,DFSDM,FMC,SD/MMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4R9AI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",14,-,2,2,131,MIPI DSI,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"Camera IF,DFSDM,FMC,SD/MMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4R9VG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,120,-,-,1024,-,640,11,2,"2xWDG,RTC,SysTick",14,-,2,2,77,MIPI DSI,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4R9VI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",14,-,2,2,77,MIPI DSI,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4R9ZG,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI",Active,"LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,WLCSP 144L DIE 470 PITCH 0.4",Arm Cortex-M4,120,-,-,1024,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,112,MIPI DSI,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4R9ZI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI",Active,"LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,WLCSP 144L DIE 470 PITCH 0.4",Arm Cortex-M4,120,-,-,1024,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,112,MIPI DSI,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4S5AI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART, AES-256, HASH",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,140,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",AES,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4S5QI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART, AES-256, HASH",Active,UFBGA 7X7X0.6 132L P 0.5 R 12X12,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,110,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",AES,true,External,1.71,3.6,0.02,112,-40,"125,85" +STM32L4S5VI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART, AES-256, HASH",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,83,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4S5ZI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART, AES-256, HASH",Active,"LQFP 144 20x20x1.4,WLCSP 144L DIE 470 PITCH 0.4",Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,115,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4S7AI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, AES-256, HASH",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,140,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4S7VI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, AES-256, HASH",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,83,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4S7ZI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, AES-256, HASH",Active,LQFP 144 20x20x1.4,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,115,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4S9AI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI, AES-256, HASH",Active,UFBGA 7X7X0.6 169L P 0.5 MM,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",14,-,2,2,131,-,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"Camera IF,DFSDM,FMC,SD/MMC",AES,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4S9VI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI, AES-256, HASH",Active,LQFP 100 14x14x1.4,Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",14,-,2,2,77,MIPI DSI,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L4S9ZI,"Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI, AES-256, HASH",Active,"LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,WLCSP 144L DIE 470 PITCH 0.4",Arm Cortex-M4,120,-,-,2048,-,640,11,2,"2xWDG,RTC,SysTick",16,-,2,2,112,MIPI DSI,1,-,4,3,-,USB OTG FS,6,-,-,2,SAI,"DFSDM,FMC",-,true,-,1.71,3.6,0.02,112,-40,85 +STM32L100C6,"Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB",NRND,UFQFPN 48 7x7x0.55,Arm Cortex-M3,32,-,-,32,2048,4,6,-,"2 x WDG,24-bit down counter,RTC",14,-,2,2,37,LCD 4x18,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.8,3.6,0.3,185,-40,85 +STM32L100R8,"Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB",NRND,LQFP 64 10x10x1.4,Arm Cortex-M3,32,-,-,64,2048,8,6,-,"2 x WDG,24-bit down counter,RTC",20,-,2,2,51,LCD 4x32/8x28,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.8,3.6,0.3,185,-40,85 +STM32L100RB,"Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB",NRND,LQFP 64 10x10x1.4,Arm Cortex-M3,32,-,-,128,2048,10,6,-,"2 x WDG,24-bit down counter,RTC",20,-,2,2,51,LCD 4x32/8x28,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.8,3.6,0.3,185,-40,85 +STM32L151C6,"Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, USB",NRND,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,32,-,-,32,4096,10,6,-,"2 x WDG,RTC,SysTick",14,-,2,2,37,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151C8,"Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB",NRND,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,32,-,-,64,4096,10,6,-,"2 x WDG,RTC,SysTick",14,-,2,2,37,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151R6,"Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, USB",NRND,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,32,-,-,32,4096,10,6,-,"2 x WDG,RTC,SysTick",20,-,2,2,51,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151R8,"Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB",NRND,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,32,-,-,64,4096,10,6,-,"2 x WDG,RTC,SysTick",20,-,2,2,51,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151RC-A,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp",NRND,LQFP 64 10x10x1.4,Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",21,-,2,2,51,-,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151V8,"Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB",NRND,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M3,32,-,-,64,4096,10,6,-,"2 x WDG,RTC,SysTick",24,-,2,2,83,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151VB,"Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB",NRND,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M3,32,-,-,128,4096,16,6,-,"2 x WDG,RTC,SysTick",24,-,2,2,83,-,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L151VC-A,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp",NRND,LQFP 100 14x14x1.4,Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2 x WDG,RTC,SysTick",25,-,2,2,83,-,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152C6,"Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB",NRND,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,32,-,-,32,4096,10,6,-,"2 x WDG,RTC,SysTick",14,-,2,2,37,LCD 4x18,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152C8,"Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB",NRND,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,32,-,-,64,4096,10,6,-,"2 x WDG,RTC,SysTick",14,-,2,2,36,LCD 4x16,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152CB,"Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB",NRND,"LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55",Arm Cortex-M3,32,-,-,128,4096,16,6,-,"2 x WDG,RTC,SysTick",14,-,2,2,37,LCD 4x18,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152R6,"Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB",NRND,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,32,-,-,32,4096,10,6,-,"2xWDG,RTC,SysTick",20,-,2,2,51,LCD 4x32/8x28,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152R8,"Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB",NRND,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,32,-,-,64,4096,10,6,-,"2xWDG,RTC,SysTick",20,-,2,2,51,LCD 4x32/8x28,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152RB,"Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB",NRND,"LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2",Arm Cortex-M3,32,-,-,128,4096,16,6,-,"2xWDG,RTC,SysTick",20,-,2,2,51,LCD 4x32/8x28,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152RC-A,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp",NRND,LQFP 64 10x10x1.4,Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",21,-,2,2,51,LCD 4x32/8x28,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152V8,"Ultra-low-power Cortex-M3 MCU with 64 Kbytes Flash, RTC, LCD, USB",NRND,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M3,32,-,-,64,4096,10,6,-,"2 x WDG,RTC,SysTick",24,-,2,2,82,LCD 4x44/8x40,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152VB,"Ultra-low-power Cortex-M3 MCU with 128 Kbytes Flash, RTC, LCD, USB",NRND,"LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6",Arm Cortex-M3,32,-,-,128,4096,16,6,-,"2 x WDG,RTC,SysTick",24,-,2,2,83,LCD 4x44/8x40,-,-,2,2,-,USB Device,3,-,-,-,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L152VC-A,"Ultra-low-power Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp",NRND,LQFP 100 14x14x1.4,Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2 x WDG,RTC,SysTick",25,-,2,2,83,LCD 4x44/8x40,-,-,2,3,2,USB Device,3,-,-,2,-,-,-,-,-,1.65,3.6,0.3,185,-40,85 +STM32L162RC-A,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES",NRND,LQFP 64 10x10x1.4,Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",21,-,2,2,51,LCD 4x32/8x28,-,-,2,3,2,USB Device,3,-,-,2,-,-,AES,-,-,1.65,3.6,0.3,185,-40,85 +STM32L162VC-A,"Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES",NRND,LQFP 100 14x14x1.4,Arm Cortex-M3,32,-,-,256,8192,32,8,1,"2xWDG,RTC,SysTick",25,-,2,2,83,LCD 4x44/8x40,-,-,2,3,2,USB Device,3,-,-,2,-,-,AES,-,-,1.65,3.6,0.3,185,-40,85 diff --git a/stm32/csv/STM32 Wireless MCUs.csv b/stm32/csv/STM32 Wireless MCUs.csv new file mode 100644 index 0000000..da5515c --- /dev/null +++ b/stm32/csv/STM32 Wireless MCUs.csv @@ -0,0 +1,4 @@ +Part Number,General Description,Marketing Status,Package,Core,Operating Frequency (MHz) (Processor speed),Co-Processor type,Co-Processor frequency (MHz) max,FLASH Size (kB) (Prog),Data E2PROM (B) nom,RAM Size (kB),Timers (16 bit) typ,Timers (32 bit) typ,Other timer functions,A/D Converters (12-bit channels),A/D Converters (16-bit channels),D/A Converters (12 bit) typ,Comparator,I/Os (High Current),Display controller,CAN typ,CAN FD typ,I2C typ,SPI typ,I2S typ,USB Type,USART typ,UART typ,Connectivity supported,Integrated op-amps,Additional Serial Interfaces,Parallel Interfaces,Crypto-HASH,TRNG typ,SMPS,Supply Voltage (V) min,Supply Voltage (V) max,Supply Current (µA) (Lowest power mode) typ,Supply Current (µA) (Run mode (per Mhz)) typ,Operating Temperature (°C) min,Operating Temperature (°C) max +STM32WB55CG,"Ultra-low-power dual core Arm Cortex-M4 MCU 64 MHz, Cortex-M0 32MHz with 1 Mbyte Flash, BLE, 802.15.4, USB, LCD, AES-256",Preview,UFQFPN 48 7x7x0.55,Arm Cortex-M4,64,Arm Cortex-M0+,32,1024,-,256,5,1,"2xWDG,PWM,RTC,SysTick",16,-,-,2,29,LCD 4x44/8x40,-,-,2,1,-,USB FS,1,1,"2.4GHz,802.15.4,BLE,Thread/OpenThread,ZigBee",-,SAI,Quad SPI,AES,true,-,1.71,3.6,0.6,90,-40,"105,85" +STM32WB55RG,"Ultra-low-power dual core Arm Cortex-M4 MCU 64 MHz, Cortex-M0 32MHz with 1 Mbyte Flash, BLE, 802.15.4, USB, LCD, AES-256",Preview,VFQFPN 8X8X1.0 68L PITCH 0.4,Arm Cortex-M4,64,Arm Cortex-M0+,32,1024,-,256,5,1,"2xWDG,PWM,RTC,SysTick",16,-,-,2,48,LCD 4x44/8x40,-,-,2,2,-,USB FS,1,1,"2.4GHz,802.15.4,BLE,Thread/OpenThread,ZigBee",-,SAI,Quad SPI,AES,true,-,1.71,3.6,0.6,90,-40,"105,85" +STM32WB55VG,"Ultra-low-power dual core Arm Cortex-M4 MCU 64 MHz, Cortex-M0 32MHz with 1 Mbyte Flash, BLE, 802.15.4, USB, LCD, AES-256",Preview,"THIN WLCSP 100 DIE 495 P0.4,WLCSP 100L DIE 495 PITCH 0.4",Arm Cortex-M4,64,Arm Cortex-M0+,32,1024,-,256,5,1,"2xWDG,PWM,RTC,SysTick",16,-,-,2,72,LCD 4x44/8x40,-,-,2,2,-,USB FS,1,1,"2.4GHz,802.15.4,BLE,Thread/OpenThread,ZigBee",-,SAI,Quad SPI,AES,true,-,1.71,3.6,0.6,90,-40,85 diff --git a/stm32/owl/STM32 High Performance MCUs.owl b/stm32/owl/STM32 High Performance MCUs.owl new file mode 100644 index 0000000..cd55e83 --- /dev/null +++ b/stm32/owl/STM32 High Performance MCUs.owl @@ -0,0 +1,13771 @@ + + + + + + + + Chip + + + + + ChipLine + + + + + + chip_line + Line + + + + + STM32 High Performance MCUs + + + + Chip Has Part Number + + part_number + + + + Chip Has General Description + + general_description + + + + Chip Has Marketing Status + + marketing_status + + + + Chip Has Package + + package + + + + Chip Has Core + + core + + + + Chip Has Operating Frequency (MHz) (Processor speed) + + operating_frequency_mhz_processor_speed + + + + Chip Has Co-Processor type + + co_processor_type + + + + Chip Has Co-Processor frequency (MHz) max + + co_processor_frequency_mhz_max + + + + Chip Has FLASH Size (kB) (Prog) + + flash_size_kb_prog + + + + Chip Has Data E2PROM (B) nom + + data_e2prom_b_nom + + + + Chip Has RAM Size (kB) + + ram_size_kb + + + + Chip Has Timers (16 bit) typ + + timers_16_bit_typ + + + + Chip Has Timers (32 bit) typ + + timers_32_bit_typ + + + + Chip Has Other timer functions + + other_timer_functions + + + + Chip Has Operating Temperature (oC) max + + operating_temperature_oc_max + + + + + STM32F411VE + + STM32F411VE + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 100 MHz CPU, ART Accelerator + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 100 + - + - + 512 + - + 128 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + - + - + 81 + - + - + - + 3 + 5 + 5 + USB OTG FS + 3 + - + - + - + - + SDIO + - + - + - + 1.7 + 3.6 + 1.8 + 100 + -40 + 85 + + + + + STM32F413VG + + STM32F413VG + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 100 + - + - + 1024 + - + 320 + 13 + 2 + 2xWDG,SysTick,RTC + 16 + - + 2 + - + 81 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 4 + 6 + - + - + SAI + DFSDM,FSMC,Quad SPI,SD/MMC,SDIO + - + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F730I8 + + STM32F730I8 + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 64 Kbytes of Flash memory, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM + Active + BGA 176 + Arm Cortex-M7 + 216 + - + - + 64 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 138 + - + 1 + - + 4 + 5 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + AES + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 105,85 + + + + + STM32F730R8 + + STM32F730R8 + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 64 Kbytes of Flash memory, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto,SDRAM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M7 + 216 + - + - + 64 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 50 + - + 1 + - + 4 + 4 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + AES + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 105,85 + + + + + STM32F730V8 + + STM32F730V8 + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 64 Kbytes of Flash memory, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM + Active + LQFP 100 14x14x1.4 + Arm Cortex-M7 + 216 + - + - + 64 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + - + 1 + - + 4 + 4 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + AES + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 105,85 + + + + + STM32F730Z8 + + STM32F730Z8 + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 64 Kbytes of Flash memory, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M7 + 216 + - + - + 64 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 112 + - + 1 + - + 4 + 5 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + AES + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 105,85 + + + + + STM32F745IE + + STM32F745IE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 105,85 + + + + + STM32F746NG + + STM32F746NG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M7 + 216 + - + - + 1024 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 105,85 + + + + + STM32F750N8 + + STM32F750N8 + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 64 Kbyte of Flash memory, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M7 + 216 + - + - + 64 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 105,85 + + + + + STM32F750V8 + + STM32F750V8 + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 64 Kbyte of Flash memory, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT + Active + LQFP 100 14x14x1.4 + Arm Cortex-M7 + 216 + - + - + 64 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 105,85 + + + + + STM32F750Z8 + + STM32F750Z8 + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 64 Kbyte of Flash memory, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT + Active + LQFP 144 20x20x1.4 + Arm Cortex-M7 + 216 + - + - + 64 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 105,85 + + + + + STM32F765NI + + STM32F765NI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + - + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 105,85 + + + + + STM32F765ZG + + STM32F765ZG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M7 + 216 + - + - + 1024 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + - + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 105,85 + + + + + STM32H750IB + + STM32H750IB + High-performance and DSP with DP-FPU, Arm Cortex-M7 MCU with 128Kbytes of Flash memory, 1MB RAM, 400 MHz CPU, L1 cache, external memory interface, JPEG codec, HW crypto, large set of peripherals + Active + BGA 176 + Arm Cortex-M7 + 400 + - + - + 128 + - + 1024 + 18 + - + 24-bit downcounter,2xWDG,HR Timer,LP timer,RTC + - + 20 + 2 + 2 + 140 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.62 + 3.6 + 4 + 270 + -40 + 105,85 + + + + + STM32H750VB + + STM32H750VB + High-performance and DSP with DP-FPU, Arm Cortex-M7 MCU with 128 Kbytes of Flash memory, 1MB RAM, 400 MHz CPU, L1 cache, external memory interface, JPEG codec, HW crypto, large set of peripherals + Active + LQFP 100 14x14x1.4 + Arm Cortex-M7 + 400 + - + - + 128 + - + 1024 + 18 + - + 24-bit downcounter,2xWDG,HR Timer,LP timer,RTC + - + 20 + 2 + 2 + 82 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.71 + 3.6 + 4 + 270 + -40 + 105,85 + + + + + STM32H750XB + + STM32H750XB + High-performance and DSP with DP-FPU, Arm Cortex-M7 MCU with 128KBytes of Flash memory, 1MB RAM, 400 MHz CPU, L1 cache, external memory interface, JPEG codec, HW crypto, large set of peripherals + Active + TFBGA 14X14X1.2 P 0.8 240+25L + Arm Cortex-M7 + 400 + - + - + 128 + - + 1024 + 18 + - + 24-bit downcounter,2xWDG,HR Timer,LP timer,RTC + - + 20 + 2 + 2 + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.62 + 3.6 + 4 + 270 + -40 + 105,85 + + + + + STM32F205RB + + STM32F205RB + High-performance Arm Cortex-M3 MCU with 128 Kbytes Flash, 120 MHz CPU, ART Accelerator + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 120 + - + - + 128 + - + 64 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 51 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F205RC + + STM32F205RC + High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 120 + - + - + 256 + - + 96 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 51 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F205RE + + STM32F205RE + High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator + Active + LQFP 64 10x10x1.4,WLCSP 66L R9X9 PITCH 0.4 MM + Arm Cortex-M3 + 120 + - + - + 512 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 51 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F205RF + + STM32F205RF + High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 120 + - + - + 768 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 51 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F205RG + + STM32F205RG + High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator + Active + EWLCSP 66L DIE 411 P 0.4 MM,LQFP 64 10x10x1.4,WLCSP 66L R9X9 PITCH 0.4 MM + Arm Cortex-M3 + 120 + - + - + 1024 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 51 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F205VB + + STM32F205VB + High-performance Arm Cortex-M3 MCU with 128 Kbytes Flash, 120 MHz CPU, ART Accelerator + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 120 + - + - + 128 + - + 64 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F205VC + + STM32F205VC + High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 120 + - + - + 256 + - + 96 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F205VE + + STM32F205VE + High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 120 + - + - + 512 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F205VF + + STM32F205VF + High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 120 + - + - + 768 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + Chip Has A/D Converters (12-bit channels) + + ad_converters_12_bit_channels + + + + Chip Has A/D Converters (16-bit channels) + + ad_converters_16_bit_channels + + + + Chip Has D/A Converters (12 bit) typ + + da_converters__12_bit_typ + + + + Chip Has Comparator + + comparator + + + + Chip Has I/Os (High Current) + + ios_high_current + + + + Chip Has Display controller + + display_controller + + + + Chip Has CAN typ + + can__typ + + + + Chip Has CAN FD typ + + can_fd_typ + + + + Chip Has I2C typ + + i2c_typ + + + + Chip Has SPI typ + + spi_typ + + + + Chip Has I2S typ + + i2s_typ + + + + Chip Has USB Type + + usb_type + + + + Chip Has USART typ + + usart__typ + + + + Chip Has UART typ + + uart_typ + + + + Chip Has Connectivity supported + + connectivity_supported + + + + Chip Has Integrated op-amps + + integrated_op_amps + + + + Chip Has Additional Serial Interfaces + + additional_serial_interfaces + + + + Chip Has Parallel Interfaces + + parallel_interfaces + + + + Chip Has Crypto-HASH + + crypto_hash + + + + Chip Has TRNG typ + + trng_typ + + + + Chip Has SMPS + + smps + + + + Chip Has Supply Voltage (V) min + + supply_voltage_v_min + + + + Chip Has Supply Voltage (V) max + + supply_voltage_v_max + + + + Chip Has Supply Current (uA) (Lowest power mode) typ + + supply_current_ua_lowest_power_mode_typ + + + + Chip Has Supply Current (uA) (Run mode (per Mhz)) typ + + supply_current_ua_run_mode_per_mhz_typ + + + + Chip Has Operating Temperature (oC) min + + operating_temperature_oc_min + + + + + STM32F205VG + + STM32F205VG + High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 120 + - + - + 1024 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F205ZC + + STM32F205ZC + High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 120 + - + - + 256 + - + 96 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F205ZE + + STM32F205ZE + High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 120 + - + - + 512 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F205ZF + + STM32F205ZF + High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 120 + - + - + 768 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F205ZG + + STM32F205ZG + High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 120 + - + - + 1024 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F207IC + + STM32F207IC + High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M3 + 120 + - + - + 256 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F207IE + + STM32F207IE + High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M3 + 120 + - + - + 512 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F207IF + + STM32F207IF + High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M3 + 120 + - + - + 768 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F207IG + + STM32F207IG + High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M3 + 120 + - + - + 1024 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F207VC + + STM32F207VC + High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 120 + - + - + 256 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F401RE + + STM32F401RE + STM32 Dynamic Efficiency MCU, ARM Cortex-M4 core with DSP and FPU, up to 512 Kbytes Flash, 84 MHz CPU, Art Accelerator + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 84 + - + - + 512 + - + 96 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + - + - + 50 + - + - + - + 3 + 3 + 2 + USB OTG FS + 3 + - + - + - + - + SDIO + - + - + - + 1.7 + 3.6 + 1.8 + 137 + -40 + 105,85 + + + + + STM32F401VB + + STM32F401VB + High-performance access line, Arm Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 84 MHz CPU, ART Accelerator + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 84 + - + - + 128 + - + 64 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 81 + - + - + - + 3 + 4 + 2 + USB OTG FS + 3 + - + - + - + - + SDIO + - + - + - + 1.7 + 3.6 + 1.8 + 128 + -40 + 125,85 + + + + + STM32F401VC + + STM32F401VC + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 84 MHz CPU, ART Accelerator + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 84 + - + - + 256 + - + 64 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + - + - + 81 + - + - + - + 3 + 4 + 2 + USB OTG FS + 3 + - + - + - + - + SDIO + - + - + - + 1.7 + 3.6 + 1.8 + 128 + -40 + 105,85 + + + + + STM32F401VD + + STM32F401VD + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 384 Kbytes Flash, 84 MHz CPU, ART Accelerator + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 84 + - + - + 384 + - + 96 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + - + - + 81 + - + - + - + 3 + 4 + 2 + USB OTG FS + 3 + - + - + - + - + SDIO + - + - + - + 1.7 + 3.6 + 1.8 + 137 + -40 + 85 + + + + + STM32F401VE + + STM32F401VE + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 84 MHz CPU, ART Accelerator + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 84 + - + - + 512 + - + 96 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + - + - + 81 + - + - + - + 3 + 4 + 2 + USB OTG FS + 3 + - + - + - + - + SDIO + - + - + - + 1.7 + 3.6 + 1.8 + 137 + -40 + 85 + + + + + STM32F405OE + + STM32F405OE + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, FSMC + Active + WLCSP 90 BALLS DIE 413 P 0.4 MM + Arm Cortex-M4 + 168 + - + - + 512 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 13 + - + 2 + - + 72 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + FSMC,SD/MMC + - + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 85 + + + + + STM32F405OG + + STM32F405OG + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC + Active + WLCSP 90 BALLS DIE 413 P 0.4 MM + Arm Cortex-M4 + 168 + - + - + 1024 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 13 + - + 2 + - + 72 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + FSMC,SD/MMC + - + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 85 + + + + + STM32F405RG + + STM32F405RG + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 168 + - + - + 1024 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 51 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + FSMC,SD/MMC + - + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 105,85 + + + + + STM32F405VG + + STM32F405VG + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 168 + - + - + 1024 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + FSMC,SD/MMC + - + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 105,85 + + + + + STM32F405ZG + + STM32F405ZG + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 168 + - + - + 1024 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + FSMC,SD/MMC + - + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 105,85 + + + + + STM32F407IE + + STM32F407IE + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 168 + - + - + 512 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + FSMC,SD/MMC + - + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 105,85 + + + + + STM32F407IG + + STM32F407IG + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 168 + - + - + 1024 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + FSMC,SD/MMC + - + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 105,85 + + + + + STM32F407VE + + STM32F407VE + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 168 + - + - + 512 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + FSMC,SD/MMC + - + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 85 + + + + + STM32F407VG + + STM32F407VG + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 168 + - + - + 1024 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + FSMC,SD/MMC + - + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 105,85 + + + + + STM32F407ZE + + STM32F407ZE + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 168 + - + - + 512 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + FSMC,SD/MMC + - + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 105,85 + + + + + STM32F407ZG + + STM32F407ZG + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 168 + - + - + 1024 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + FSMC,SD/MMC + - + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 105,85 + + + + + STM32F410C8 + + STM32F410C8 + STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 64 Kbytes Flash, 100 MHz CPU, Art Accelerator + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M4 + 100 + - + - + 64 + - + 32 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 1 + - + 36 + - + - + - + 3 + 3 + 3 + - + 3 + - + - + - + - + - + - + - + - + 1.7 + 3.6 + 2.6 + 89 + -40 + 85 + + + + + STM32F410CB + + STM32F410CB + STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 128 Kbytes Flash, 100 MHz CPU, Art Accelerator + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M4 + 100 + - + - + 128 + - + 32 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 1 + - + 36 + - + - + - + 3 + 3 + 3 + - + 3 + - + - + - + - + - + - + - + - + 1.7 + 3.6 + 2.6 + 89 + -40,40 + 125,85 + + + + + STM32F410R8 + + STM32F410R8 + STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 64 Kbytes Flash, 100 MHz CPU, Art Accelerator + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 100 + - + - + 64 + - + 32 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 1 + - + 50 + - + - + - + 3 + 3 + 3 + - + 3 + - + - + - + - + - + - + - + - + 1.7 + 3.6 + 2.6 + 89 + -40 + 85 + + + + + STM32F410RB + + STM32F410RB + STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 128 Kbytes Flash, 100 MHz CPU, Art Accelerator + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM + Arm Cortex-M4 + 100 + - + - + 128 + - + 32 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 1 + - + 50 + - + - + - + 3 + 3 + 3 + - + 3 + - + - + - + - + - + - + - + - + 1.7 + 3.6 + 2.6 + 89 + -40 + 105,125,85 + + + + + STM32F410T8 + + STM32F410T8 + STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 64 Kbytes Flash, 100 MHz CPU, Art Accelerator + Active + WLCSP 36L die 458 P 0.4 MM + Arm Cortex-M4 + 100 + - + - + 64 + - + 32 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 4 + - + 1 + - + 23 + - + - + - + 2 + 1 + 3 + - + 2 + - + - + - + - + - + - + - + - + 1.7 + 3.6 + 2.6 + 89 + -40 + 85 + + + + + STM32F410TB + + STM32F410TB + STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 128 Kbytes Flash, 100 MHz CPU, Art Accelerator + Active + WLCSP 36L die 458 P 0.4 MM + Arm Cortex-M4 + 100 + - + - + 128 + - + 32 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 4 + - + 1 + - + 23 + - + - + - + 2 + 1 + 3 + - + 2 + - + - + - + - + - + - + - + - + 1.7 + 3.6 + 2.6 + 89 + -40 + 105,125,85 + + + + + STM32F411CC + + STM32F411CC + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 100 MHz CPU, ART Accelerator + Active + UFQFPN 48 7x7x0.55,WLCSP 49L DIE 431 P 0.4 MM + Arm Cortex-M4 + 100 + - + - + 256 + - + 128 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 10 + - + 2 + - + 36 + - + - + - + 3 + 5 + 5 + USB OTG FS + 3 + - + - + - + - + SDIO + - + - + - + 1.7 + 3.6 + 1.8 + 100 + -40 + 85 + + + + + STM32F411CE + + STM32F411CE + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 100 MHz CPU, ART Accelerator + Active + UFQFPN 48 7x7x0.55,WLCSP 49L DIE 431 P 0.4 MM + Arm Cortex-M4 + 100 + - + - + 512 + - + 128 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 36 + - + - + - + 3 + 5 + 5 + USB OTG FS + 3 + - + - + - + - + SDIO + - + - + - + 1.7 + 3.6 + 1.8 + 100 + -40 + 105,125,85 + + + + + STM32F411RC + + STM32F411RC + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 100 MHz CPU, ART Accelerator + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 100 + - + - + 256 + - + 128 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 50 + - + - + - + 3 + 5 + 5 + USB OTG FS + 3 + - + - + - + - + SDIO + - + - + - + 1.7 + 3.6 + 1.8 + 100 + -40 + 105,85 + + + + + STM32F411RE + + STM32F411RE + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 100 MHz CPU, ART Accelerator + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 100 + - + - + 512 + - + 128 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + - + - + 50 + - + - + - + 3 + 5 + 5 + USB OTG FS + 3 + - + - + - + - + SDIO + - + - + - + 1.7 + 3.6 + 1.8 + 100 + -40 + 105,85 + + + + + STM32F207VE + + STM32F207VE + High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 120 + - + - + 512 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F207VF + + STM32F207VF + High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 120 + - + - + 768 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F207VG + + STM32F207VG + High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 120 + - + - + 1024 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F207ZC + + STM32F207ZC + High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 120 + - + - + 256 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F207ZE + + STM32F207ZE + High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 120 + - + - + 512 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F207ZF + + STM32F207ZF + High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 120 + - + - + 768 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F207ZG + + STM32F207ZG + High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 120 + - + - + 1024 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + - + - + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F215RE + + STM32F215RE + High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, HW crypto + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 120 + - + - + 512 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 51 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + AES,DES/TDES,MD5,SHA + true + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F215RG + + STM32F215RG + High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, HW crypto + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 120 + - + - + 1024 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 51 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + AES,DES/TDES,MD5,SHA + true + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F215VE + + STM32F215VE + High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, HW crypto + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 120 + - + - + 512 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + AES,DES/TDES,MD5,SHA + true + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F215VG + + STM32F215VG + High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, HW crypto + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 120 + - + - + 1024 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + AES,DES/TDES,MD5,SHA + true + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F215ZE + + STM32F215ZE + High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, HW crypto + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 120 + - + - + 512 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + AES,DES/TDES,MD5,SHA + true + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F215ZG + + STM32F215ZG + High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, HW crypto + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 120 + - + - + 1024 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + SDIO + AES,DES/TDES,MD5,SHA + true + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F217IE + + STM32F217IE + High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M3 + 120 + - + - + 512 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + AES,DES/TDES,MD5,SHA + true + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F217IG + + STM32F217IG + High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M3 + 120 + - + - + 1024 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + AES,DES/TDES,MD5,SHA + true + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F217VE + + STM32F217VE + High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 120 + - + - + 512 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + AES,DES/TDES,MD5,SHA + true + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F217VG + + STM32F217VG + High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 120 + - + - + 1024 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + AES,DES/TDES,MD5,SHA + true + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F217ZE + + STM32F217ZE + High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 120 + - + - + 512 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + AES,DES/TDES,MD5,SHA + true + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 105,85 + + + + + STM32F217ZG + + STM32F217ZG + High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 120 + - + - + 1024 + - + 128 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + SDIO + AES,DES/TDES,MD5,SHA + true + - + 1.8 + 3.6 + 2.5 + 188 + -40 + 85 + + + + + STM32F401CB + + STM32F401CB + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 84 MHz CPU, ART Accelerator + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M4 + 84 + - + - + 128 + - + 64 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 36 + - + - + - + 3 + 3 + 2 + USB OTG FS + 3 + - + - + - + - + - + - + - + - + 1.7 + 3.6 + 1.8 + 128 + -40 + 105,125,85 + + + + + STM32F401CC + + STM32F401CC + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 84 MHz CPU, ART Accelerator + Active + THIN WLCSP 49L DIE 423 PITCH 0.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 423 R 7X7 P 0.4 MM + Arm Cortex-M4 + 84 + - + - + 256 + - + 64 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 36 + - + - + - + 3 + 3 + 2 + USB OTG FS + 3 + - + - + - + - + - + - + - + - + 1.7 + 3.6 + 1.8 + 128 + -40 + 105,85 + + + + + STM32F401CD + + STM32F401CD + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 384 Kbytes Flash, 84 MHz CPU, ART Accelerator + Active + UFQFPN 48 7x7x0.55,WLCSP 49L DIE 433 P 0.4 MM + Arm Cortex-M4 + 84 + - + - + 384 + - + 96 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 36 + - + - + - + 3 + 3 + 2 + USB OTG FS + 3 + - + - + - + - + - + - + - + - + 1.7 + 3.6 + 1.8 + 137 + -40 + 85 + + + + + STM32F401CE + + STM32F401CE + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 84 MHz CPU, ART Accelerator + Active + UFQFPN 48 7x7x0.55,WLCSP 49L DIE 433 P 0.4 MM + Arm Cortex-M4 + 84 + - + - + 512 + - + 96 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 36 + - + - + - + 3 + 3 + 2 + USB OTG FS + 3 + - + - + - + - + - + - + - + - + 1.7 + 3.6 + 1.8 + 137 + -40 + 85 + + + + + STM32F401RB + + STM32F401RB + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 84 MHz CPU, ART Accelerator + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 84 + - + - + 128 + - + 64 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + - + - + 50 + - + - + - + 3 + 3 + 2 + USB OTG FS + 3 + - + - + - + - + SDIO + - + - + - + 1.7 + 3.6 + 1.7,1.8 + 128 + -40 + 85 + + + + + STM32F401RC + + STM32F401RC + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 84 MHz CPU, ART Accelerator + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 84 + - + - + 256 + - + 64 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + - + - + 50 + - + - + - + 3 + 3 + 2 + USB OTG FS + 3 + - + - + - + - + SDIO + - + - + - + 1.7 + 3.6 + 1.8 + 128 + -40 + 105,85 + + + + + STM32F401RD + + STM32F401RD + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 384 Kbytes Flash, 84 MHz CPU, ART Accelerator + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 84 + - + - + 384 + - + 96 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + - + - + 50 + - + - + - + 3 + 3 + 2 + USB OTG FS + 3 + - + - + - + - + SDIO + - + - + - + 1.7 + 3.6 + 1.8 + 137 + -40 + 85 + + + + + STM32F411VC + + STM32F411VC + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 100 MHz CPU, ART Accelerator + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 100 + - + - + 256 + - + 128 + 6 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + - + - + 81 + - + - + - + 3 + 5 + 5 + USB OTG FS + 3 + - + - + - + - + SDIO + - + - + - + 1.7 + 3.6 + 1.8 + 100 + -40 + 85 + + + + + STM32F412CE + + STM32F412CE + STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 512 Kbytes Flash, 100 MHz CPU, Art Accelerator, DFSDM + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M4 + 100 + - + - + 512 + - + 256 + 12 + 2 + 2xWDG,RTC,SysTick + 10 + - + - + - + 36 + - + 2 + - + 4 + 5 + 5 + USB OTG FS + 3 + - + - + - + - + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 85 + + + + + STM32F412CG + + STM32F412CG + STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 1 Mbyte Flash, 100 MHz CPU, Art Accelerator, DFSDM + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M4 + 100 + - + - + 1024 + - + 256 + 12 + 2 + 2xWDG,RTC,SysTick + 10 + - + - + - + 36 + - + 2 + - + 4 + 5 + 5 + USB OTG FS + 3 + - + - + - + - + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 85 + + + + + STM32F412RE + + STM32F412RE + STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 512 Kbytes Flash, 100 MHz CPU, Art Accelerator, DFSDM + Active + LQFP 64 10x10x1.4,WLCSP 64L DIE 441 P 0.4 MM + Arm Cortex-M4 + 100 + - + - + 512 + - + 256 + 12 + 2 + 2xWDG,RTC,SysTick + 16 + - + - + - + 50 + - + 2 + - + 4 + 5 + 5 + USB OTG FS + 4 + - + - + - + - + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 85 + + + + + STM32F412RG + + STM32F412RG + STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 1 Mbyte Flash, 100 MHz CPU, Art Accelerator, DFSDM + Active + LQFP 64 10x10x1.4,WLCSP 64L DIE 441 P 0.4 MM + Arm Cortex-M4 + 100 + - + - + 1024 + - + 256 + 12 + 2 + 2xWDG,RTC,SysTick + 16 + - + - + - + 50 + - + 2 + - + 4 + 5 + 5 + USB OTG FS + 4 + - + - + - + - + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 85 + + + + + STM32F412VE + + STM32F412VE + STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 512 Kbytes Flash, 100 MHz CPU, Art Accelerator, DFSDM + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 100 + - + - + 512 + - + 256 + 12 + 2 + 2xWDG,RTC,SysTick + 16 + - + - + - + 81 + - + 2 + - + 4 + 5 + 5 + USB OTG FS + 4 + - + - + - + - + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125 + + + + + STM32F412VG + + STM32F412VG + STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 1 Mbyte Flash, 100 MHz CPU, Art Accelerator, DFSDM + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 100 + - + - + 1024 + - + 256 + 12 + 2 + 2xWDG,RTC,SysTick + 16 + - + - + - + 81 + - + 2 + - + 4 + 5 + 5 + USB OTG FS + 4 + - + - + - + - + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 85 + + + + + STM32F412ZE + + STM32F412ZE + STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 512 Kbytes Flash, 100 MHz CPU, Art Accelerator, DFSDM + Active + LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM + Arm Cortex-M4 + 100 + - + - + 512 + - + 256 + 12 + 2 + 2xWDG,RTC,SysTick + 16 + - + - + - + 114 + - + 2 + - + 4 + 5 + 5 + USB OTG FS + 4 + - + - + - + - + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F412ZG + + STM32F412ZG + STM32 Dynamic Efficiency MCU with BAM, High-performance and DSP with FPU, ARM Cortex-M4 MCU with 1 Mbyte Flash, 100 MHz CPU, Art Accelerator, DFSDM + Active + LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM + Arm Cortex-M4 + 100 + - + - + 1024 + - + 256 + 12 + 2 + 2xWDG,RTC,SysTick + 16 + - + - + - + 114 + - + 2 + - + 4 + 5 + 5 + USB OTG FS + 4 + - + - + - + - + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 85 + + + + + STM32F413CG + + STM32F413CG + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M4 + 100 + - + - + 1024 + - + 320 + 13 + 2 + 2xWDG,RTC,SysTick + 10 + - + 2 + - + 36 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 3 + 3 + - + - + SAI + DFSDM,SD/MMC,SDIO + - + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F427II + + STM32F427II + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 105,85 + + + + + STM32F427VG + + STM32F427VG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + true + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F427VI + + STM32F427VI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator,FSMC + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + true + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 105,85 + + + + + STM32F427ZG + + STM32F427ZG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F427ZI + + STM32F427ZI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 105,85 + + + + + STM32F429AG + + STM32F429AG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 130 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F429AI + + STM32F429AI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 130 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F429BE + + STM32F429BE + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT + Active + LQFP 208 28x28x1.4 + Arm Cortex-M4 + 180 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F429BG + + STM32F429BG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT + Active + LQFP 208 28x28x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F429BI + + STM32F429BI + High-performance advanced line, Arm Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT + Active + LQFP 208 28x28x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 105,85 + + + + + STM32F429IE + + STM32F429IE + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerateur, Chrom-ART Accelerator, FMC with SDRAM, TFT + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 180 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 140 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F429IG + + STM32F429IG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F429II + + STM32F429II + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F429NE + + STM32F429NE + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M4 + 180 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 2 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F429NG + + STM32F429NG + High-performance and DSP with FPU, ARM Cortex-M4 MCU with 1 Mbyte Flash, 180 MHz CPU, Art Accelerator, SRAM, TFT + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F429NI + + STM32F429NI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 105,85 + + + + + STM32F429VE + + STM32F429VE + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC, TFT + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F429VG + + STM32F429VG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC, TFT + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F429VI + + STM32F429VI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC, TFT + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F429ZE + + STM32F429ZE + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 180 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F429ZG + + STM32F429ZG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT + Active + LQFP 144 20x20x1.4,WLCSP 143 BALLS DIE 419 P 0.4MM + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F429ZI + + STM32F429ZI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ARTAccelerator, FMC with SDRAM, TFT + Active + LQFP 144 20x20x1.4,WLCSP 143 BALLS DIE 419 P 0.4MM + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + - + - + 1.8 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F437AI + + STM32F437AI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, HW crypto + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 130 + - + 2 + - + 2 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F437IG + + STM32F437IG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, HW crypto + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F437II + + STM32F437II + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, HW crypto + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 105,85 + + + + + STM32F437VG + + STM32F437VG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC, HW crypto + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 105,85 + + + + + STM32F413CH + + STM32F413CH + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M4 + 100 + - + - + 1536 + - + 320 + 13 + 2 + 2xWDG,SysTick,RTC + 10 + - + 2 + - + 36 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 3 + 3 + - + - + SAI + DFSDM,SD/MMC,SDIO + - + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F413MG + + STM32F413MG + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM + Active + WLCSP 81L DIE 463 PITCH 0.4 + Arm Cortex-M4 + 100 + - + - + 1024 + - + 320 + 13 + 2 + 2xWDG,SysTick,RTC + 16 + - + 2 + - + 60 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 4 + 3 + - + - + SAI + DFSDM,FSMC,Quad SPI,SD/MMC,SDIO + - + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F413MH + + STM32F413MH + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM + Active + WLCSP 81L DIE 463 PITCH 0.4 + Arm Cortex-M4 + 100 + - + - + 1536 + - + 320 + 13 + 2 + 2xWDG,SysTick,RTC + 16 + - + 2 + - + 60 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 4 + 3 + - + - + SAI + DFSDM,FSMC,Quad SPI,SD/MMC,SDIO + - + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F413RG + + STM32F413RG + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 100 + - + - + 1024 + - + 320 + 13 + 2 + 2xWDG,SysTick,RTC + 16 + - + 2 + - + 50 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 4 + 3 + - + - + SAI + DFSDM,FSMC,Quad SPI,SD/MMC,SDIO + - + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F413RH + + STM32F413RH + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 100 + - + - + 1536 + - + 320 + 13 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + - + 50 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 4 + 3 + - + - + SAI + DFSDM,FSMC,Quad SPI,SD/MMC,SDIO + - + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F413VH + + STM32F413VH + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 100 + - + - + 1536 + - + 320 + 13 + 2 + 2xWDG,SysTick,RTC + 16 + - + 2 + - + 81 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 4 + 6 + - + - + SAI + DFSDM,FSMC,Quad SPI,SD/MMC,SDIO + - + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F413ZG + + STM32F413ZG + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM + Active + LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM + Arm Cortex-M4 + 100 + - + - + 1024 + - + 320 + 13 + 2 + 2xWDG,SysTick,RTC + 16 + - + 2 + - + 114 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 4 + 6 + - + - + SAI + DFSDM,FSMC,Quad SPI,SD/MMC,SDIO + - + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F413ZH + + STM32F413ZH + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM + Active + LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM + Arm Cortex-M4 + 100 + - + - + 1536 + - + 320 + 13 + 2 + 2xWDG,SysTick,RTC + 16 + - + 2 + - + 114 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 4 + 6 + - + - + SAI + DFSDM,FSMC,Quad SPI,SD/MMC,SDIO + - + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F415OG + + STM32F415OG + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC, HW crypto + Active + WLCSP 90 BALLS DIE 413 P 0.4 MM + Arm Cortex-M4 + 168 + - + - + 1024 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 13 + - + 2 + - + 72 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + FSMC,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 85 + + + + + STM32F415RG + + STM32F415RG + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, HW crypto + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 168 + - + - + 1024 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 51 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + FSMC,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 85 + + + + + STM32F415VG + + STM32F415VG + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC, HW crypto + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 168 + - + - + 1024 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + FSMC,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 85 + + + + + STM32F415ZG + + STM32F415ZG + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC, HW crypto + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 168 + - + - + 1024 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + - + FSMC,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 85 + + + + + STM32F417IE + + STM32F417IE + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 168 + - + - + 512 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + Camera IF,FSMC,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 85 + + + + + STM32F417IG + + STM32F417IG + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 168 + - + - + 1024 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + Camera IF,FSMC,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 105,85 + + + + + STM32F417VE + + STM32F417VE + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 168 + - + - + 512 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + Camera IF,FSMC,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 85 + + + + + STM32F417VG + + STM32F417VG + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 168 + - + - + 1024 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + Camera IF,FSMC,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 105,85 + + + + + STM32F417ZE + + STM32F417ZE + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 168 + - + - + 512 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + Camera IF,FSMC,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 85 + + + + + STM32F417ZG + + STM32F417ZG + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 168 + - + - + 1024 + - + 192 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 3 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 2 + - + - + Ethernet + Camera IF,FSMC,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.8 + 3.6 + 1.7 + 215 + -40 + 85 + + + + + STM32F423CH + + STM32F423CH + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M4 + 100 + - + - + 1536 + - + 320 + 13 + 2 + 2xWDG,SysTick,RTC + 10 + - + 2 + - + 36 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 3 + 3 + - + - + SAI + DFSDM,SD/MMC,SDIO + AES + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F423MH + + STM32F423MH + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES + Active + WLCSP 81L DIE 463 PITCH 0.4 + Arm Cortex-M4 + 100 + - + - + 1536 + - + 320 + 13 + 2 + 2xWDG,SysTick,RTC + 16 + - + 2 + - + 60 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 4 + 3 + - + - + SAI + DFSDM,FSMC,Quad SPI,SD/MMC,SDIO + AES + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F423RH + + STM32F423RH + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 100 + - + - + 1536 + - + 320 + 13 + 2 + 2xWDG,SysTick,RTC + 16 + - + 2 + - + 50 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 4 + 3 + - + - + SAI + DFSDM,FSMC,Quad SPI,SD/MMC,SDIO + AES + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F423VH + + STM32F423VH + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 100 + - + - + 1536 + - + 320 + 13 + 2 + 2xWDG,SysTick,RTC + 16 + - + 2 + - + 81 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 4 + 6 + - + - + SAI + DFSDM,FSMC,Quad SPI,SD/MMC,SDIO + AES + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F423ZH + + STM32F423ZH + High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES + Active + LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM + Arm Cortex-M4 + 100 + - + - + 1536 + - + 320 + 13 + 2 + 2xWDG,SysTick,RTC + 16 + - + 2 + - + 114 + - + 3 + - + 3 + 5 + 5 + USB OTG FS + 4 + 6 + - + - + SAI + DFSDM,FSMC,Quad SPI,SD/MMC,SDIO + AES + true + - + 1.7 + 3.6 + 1.1 + 112 + -40 + 125,85 + + + + + STM32F427AG + + STM32F427AG + High-performance Advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 130 + - + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FSMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F427AI + + STM32F427AI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 130 + - + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F427IG + + STM32F427IG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ARTAccelerator, FMC with SDRAM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F437VI + + STM32F437VI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC, HW crypto + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 105,85 + + + + + STM32F437ZG + + STM32F437ZG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, HW crypto + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F437ZI + + STM32F437ZI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbyes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, HW crypto + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 105,85 + + + + + STM32F439AI + + STM32F439AI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F439BG + + STM32F439BG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto + Active + LQFP 208 28x28x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F439BI + + STM32F439BI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto + Active + LQFP 208 28x28x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 105,85 + + + + + STM32F439IG + + STM32F439IG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F439II + + STM32F439II + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 140 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 105,85 + + + + + STM32F439NG + + STM32F439NG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F439NI + + STM32F439NI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F469VI + + STM32F469VI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, FMC with SDRAM, Dual QSPI, TFT,MIPI-DSI + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 14 + - + 2 + - + 71 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 3 + - + - + SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F469ZE + + STM32F469ZE + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 180 + - + - + 512 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 20 + - + 2 + - + 106 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 3 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F469ZG + + STM32F469ZG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 20 + - + 2 + - + 106 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 3 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F469ZI + + STM32F469ZI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 20 + - + 2 + - + 106 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 3 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F479AG + + STM32F479AG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI, HW crypto + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 180 + - + - + 1024 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Camera IF,FMC,Quad SPI,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F479AI + + STM32F479AI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI, HW crypto + Active + UFBGA 7X7X0.6 169L P 0.5 MM,WLCSP 168L DIE 434 12X14 P 0.4MM + Arm Cortex-M4 + 180 + - + - + 2048 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Camera IF,FMC,Quad SPI,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F479BG + + STM32F479BG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI, HW crypto + Active + LQFP 208 28x28x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 161 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F479BI + + STM32F479BI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI, HW crypto + Active + LQFP 208 28x28x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 161 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F479IG + + STM32F479IG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI, HW crypto + Active + BGA 176 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 131 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F479II + + STM32F479II + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI, HW crypto + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 131 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F479NG + + STM32F479NG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI, HW crypto + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M4 + 180 + - + - + 1024 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 161 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F479NI + + STM32F479NI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART accelerator, FMC with SDRAM, dual Quad SPI, TFT, MIPI-DSI, HW crypto + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M4 + 180 + - + - + 2048 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 161 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F479VG + + STM32F479VG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 14 + - + 2 + - + 71 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 3 + - + - + SAI + Camera IF,FMC,Quad SPI,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F479VI + + STM32F479VI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 14 + - + 2 + - + 71 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 3 + - + - + SAI + Camera IF,FMC,Quad SPI,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F479ZG + + STM32F479ZG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 20 + - + 2 + - + 106 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 3 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F479ZI + + STM32F479ZI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 20 + - + 2 + - + 106 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 3 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + AES,DES/TDES,HMAC,MD5,SHA + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F722IC + + STM32F722IC + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 256 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 140 + - + 1 + - + 4 + 5 + 3 + USB OTG FS + USB OTG FS/HS + 4 + - + - + - + SAI + Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + - + - + -40 + 85 + + + + + STM32F722IE + + STM32F722IE + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 140 + - + 1 + - + 4 + 5 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + - + - + -40 + 105,85 + + + + + STM32F722RC + + STM32F722RC + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M7 + 216 + - + - + 256 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 50 + - + 1 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + - + - + - + SAI + Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + - + - + -40 + 85 + + + + + STM32F722RE + + STM32F722RE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 50 + - + 1 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + - + - + -40 + 105,85 + + + + + STM32F722VC + + STM32F722VC + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 100 14x14x1.4 + Arm Cortex-M7 + 216 + - + - + 256 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + - + 1 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + - + - + - + SAI + Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + - + - + -40 + 85 + + + + + STM32F722VE + + STM32F722VE + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 100 14x14x1.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + - + 1 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + - + - + -40 + 105,85 + + + + + STM32F722ZC + + STM32F722ZC + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M7 + 216 + - + - + 256 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 114 + - + 1 + - + 4 + 5 + 3 + USB OTG FS + USB OTG FS/HS + 4 + - + - + - + SAI + Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + - + - + -40 + 85 + + + + + STM32F722ZE + + STM32F722ZE + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 114 + - + - + - + 4 + - + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + - + - + -40 + 105,85 + + + + + STM32F723IC + + STM32F723IC + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 256 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 138 + - + 1 + - + 4 + - + 3 + USB OTG FS + USB OTG FS/HS + 4 + - + - + - + SAI + Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + - + - + -40 + 85 + + + + + STM32F723IE + + STM32F723IE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 138 + - + 1 + - + 4 + 5 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + - + - + -40 + 105,85 + + + + + STM32F439VG + + STM32F439VG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC, TFT, HW crypto + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F439VI + + STM32F439VI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC, TFT, HW crypto + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 82 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F439ZG + + STM32F439ZG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto + Active + LQFP 144 20x20x1.4,WLCSP 143 BALLS DIE 419 P 0.4MM + Arm Cortex-M4 + 180 + - + - + 1024 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F439ZI + + STM32F439ZI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, TFT, HW crypto + Active + LQFP 144 20x20x1.4,WLCSP 143 BALLS DIE 419 P 0.4MM + Arm Cortex-M4 + 180 + - + - + 2048 + - + 256 + 12 + 2 + 2 x WDG,24-bit down counter,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 208 + -40 + 85 + + + + + STM32F446MC + + STM32F446MC + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI + Active + WLCSP 81L DIE 421 R 9X9 P 0.4 MM + Arm Cortex-M4 + 180 + - + - + 256 + - + 128 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 14 + - + 2 + - + 63 + - + 2 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + HDMI CEC,SAI + FMC,Quad SPI + - + - + - + 1.8 + 3.6 + 1.12 + 167 + -40 + 85 + + + + + STM32F446ME + + STM32F446ME + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI + Active + WLCSP 81L DIE 421 R 9X9 P 0.4 MM + Arm Cortex-M4 + 180 + - + - + 512 + - + 128 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 14 + - + 2 + - + 63 + - + 2 + - + 4 + 4 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + HDMI CEC,SAI + FMC,Quad SPI + - + - + - + 1.8 + 3.6 + 1.12 + 167 + -40 + 85 + + + + + STM32F446RC + + STM32F446RC + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 180 + - + - + 256 + - + 128 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 50 + - + 2 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + HDMI CEC,SAI + Quad SPI,SDIO + - + - + - + 1.8 + 3.6 + 1.12 + 167 + -40 + 105,85 + + + + + STM32F446RE + + STM32F446RE + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 180 + - + - + 512 + - + 128 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 50 + - + 2 + - + 4 + 4 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + HDMI CEC,SAI + FMC,Quad SPI,SDIO + - + - + - + 1.8 + 3.6 + 1.12 + 167 + -40 + 105,85 + + + + + STM32F446VC + + STM32F446VC + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 256 + - + 128 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 81 + - + 2 + - + 4 + 4 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + HDMI CEC,SAI + FMC,Quad SPI,SDIO + - + - + - + 1.8 + 3.6 + 1.12 + 167 + -40 + 105,85 + + + + + STM32F446VE + + STM32F446VE + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 512 + - + 128 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 81 + - + 2 + - + 4 + 4 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + HDMI CEC,SAI + FMC,Quad SPI,SDIO + - + - + - + 1.8 + 3.6 + 1.12 + 167 + -40 + 105,85 + + + + + STM32F446ZC + + STM32F446ZC + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI + Active + LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,UFBGA 144 7x7x0.6 + Arm Cortex-M4 + 180 + - + - + 256 + - + 128 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 4 + 4 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + HDMI CEC,SAI + FMC,Quad SPI,SDIO + - + - + - + 1.8 + 3.6 + 1.12 + 167 + -40 + 105,85 + + + + + STM32F446ZE + + STM32F446ZE + High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI + Active + LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,UFBGA 144 7x7x0.6 + Arm Cortex-M4 + 180 + - + - + 512 + - + 128 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 4 + 4 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + HDMI CEC,SAI + FMC,Quad SPI,SDIO + - + - + - + 1.8 + 3.6 + 1.12 + 167 + -40 + 105,85 + + + + + STM32F469AE + + STM32F469AE + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 180 + - + - + 512 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 144 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F469AG + + STM32F469AG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + UFBGA 7X7X0.6 169L P 0.5 MM,WLCSP 168L DIE 434 12X14 P 0.4MM + Arm Cortex-M4 + 180 + - + - + 1024 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F469AI + + STM32F469AI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + UFBGA 7X7X0.6 169L P 0.5 MM,WLCSP 168L DIE 434 12X14 P 0.4MM + Arm Cortex-M4 + 180 + - + - + 2048 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F469BE + + STM32F469BE + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + LQFP 208 28x28x1.4 + Arm Cortex-M4 + 180 + - + - + 512 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 161 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F469BG + + STM32F469BG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + LQFP 208 28x28x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 161 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F469BI + + STM32F469BI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + LQFP 208 28x28x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 161 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 105,85 + + + + + STM32F469IE + + STM32F469IE + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + BGA 176 + Arm Cortex-M4 + 180 + - + - + 512 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 131 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F469IG + + STM32F469IG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 131 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F469II + + STM32F469II + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M4 + 180 + - + - + 2048 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 131 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F469NE + + STM32F469NE + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M4 + 180 + - + - + 512 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 216 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F469NG + + STM32F469NG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M4 + 180 + - + - + 1024 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 161 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F469NI + + STM32F469NI + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M4 + 180 + - + - + 2048 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 161 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 6 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 105,85 + + + + + STM32F469VE + + STM32F469VE + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 512 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 14 + - + 2 + - + 71 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 3 + - + - + SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F469VG + + STM32F469VG + High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FMC with SDRAM, Dual QSPI, TFT, MIPI-DSI + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 180 + - + - + 1024 + - + 384 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 14 + - + 2 + - + 71 + LCD TFT Controller up to 1024x728,MIPI DSI + 2 + - + 3 + 4 + 2 + USB OTG FS + USB OTG FS/HS + 4 + 3 + - + - + SAI + Camera IF,FMC,Quad SPI,SD/MMC + - + - + - + 1.7 + 3.6 + 140 + 282 + -40 + 85 + + + + + STM32F723VE + + STM32F723VE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + WLCSP 100L DIE 452 P 0.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 256 + 12 + 2 + - + 16 + - + 2 + - + 79 + - + 1 + - + 4 + 4 + 3 + - + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + - + - + -40 + 85 + + + + + STM32F723ZC + + STM32F723ZC + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 144 20x20x1.4,UFBGA 144 7x7x0.6 + Arm Cortex-M7 + 216 + - + - + 256 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 112 + - + 1 + - + 4 + 5 + 3 + USB OTG FS + USB OTG FS/HS + 4 + - + - + - + SAI + Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + - + - + -40 + 85 + + + + + STM32F723ZE + + STM32F723ZE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 144 20x20x1.4,UFBGA 144 7x7x0.6 + Arm Cortex-M7 + 216 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 112 + - + 1 + - + 4 + 5 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + - + - + -40 + 105,85 + + + + + STM32F732IE + + STM32F732IE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 140 + - + 1 + - + 4 + 5 + 3 + USB OTG FS + USB OTG FS/HS + 4 + - + - + - + SAI + Dual Quad SPI,FMC,SDIO + AES + true + - + 1.7 + 3.6 + - + - + -40 + 105,85 + + + + + STM32F732RE + + STM32F732RE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 50 + - + 1 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + AES + true + - + 1.7 + 3.6 + - + - + -40 + 105,85 + + + + + STM32F732VE + + STM32F732VE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 100 14x14x1.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + - + 1 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + AES + true + - + 1.7 + 3.6 + - + - + -40 + 105,85 + + + + + STM32F732ZE + + STM32F732ZE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 114 + - + 1 + - + 4 + - + 3 + USB OTG FS + USB OTG FS/HS + 4 + - + - + - + SAI + Dual Quad SPI,FMC,SDIO + AES + true + - + 1.7 + 3.6 + - + - + -40 + 105,85 + + + + + STM32F733IE + + STM32F733IE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 138 + - + 1 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + AES + true + - + 1.7 + 3.6 + - + - + -40 + 105,85 + + + + + STM32F733VE + + STM32F733VE + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + WLCSP 100L DIE 452 P 0.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 256 + 12 + 2 + - + 16 + - + 2 + - + 79 + - + 1 + - + 4 + 4 + 3 + - + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + AES + true + - + 1.7 + 3.6 + - + - + -40 + 85 + + + + + STM32F733ZE + + STM32F733ZE + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 144 20x20x1.4,UFBGA 144 7x7x0.6 + Arm Cortex-M7 + 216 + - + - + 512 + - + 256 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 112 + - + 1 + - + 4 + 5 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + SAI + Dual Quad SPI,FMC,SDIO + AES + true + - + 1.7 + 3.6 + - + - + -40 + 105,85 + + + + + STM32F765ZI + + STM32F765ZI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + - + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 105,85 + + + + + STM32F767BG + + STM32F767BG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM + Active + LQFP 208 28x28x1.4 + Arm Cortex-M7 + 216 + - + - + 1024 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F767BI + + STM32F767BI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM + Active + LQFP 208 28x28x1.4 + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F767IG + + STM32F767IG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 1024 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 140 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F767II + + STM32F767II + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 140 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F767NG + + STM32F767NG + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M7 + 216 + - + - + 1024 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F767NI + + STM32F767NI + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 105,85 + + + + + STM32F767VG + + STM32F767VG + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM + Active + LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT + Arm Cortex-M7 + 216 + - + - + 1024 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 105,85 + + + + + STM32F767VI + + STM32F767VI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM + Active + LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F767ZG + + STM32F767ZG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M7 + 216 + - + - + 1024 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F767ZI + + STM32F767ZI + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, JPEG codec, DFSDM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F769AI + + STM32F769AI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM + Active + WLCSP 180L DIE 451 P 0.4 MM + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F769BG + + STM32F769BG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM + Active + LQFP 208 28x28x1.4 + Arm Cortex-M7 + 216 + - + - + 1024 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 ,MIPI DSI + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F769BI + + STM32F769BI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM + Active + LQFP 208 28x28x1.4 + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F769IG + + STM32F769IG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM + Active + LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 1024 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 140 + LCD TFT Controller up to 1024x728 ,MIPI DSI + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F769II + + STM32F769II + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM + Active + LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 140 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F769NG + + STM32F769NG + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M7 + 216 + - + - + 1024 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 ,MIPI DSI + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F769NI + + STM32F769NI + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F777BI + + STM32F777BI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, JPEG codec, DFSDM + Active + LQFP 208 28x28x1.4 + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F777II + + STM32F777II + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, JPEG codec, DFSDM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 140 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 105,85 + + + + + STM32F777NI + + STM32F777NI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, JPEG codec, DFSDM + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 105,85 + + + + + STM32F777VI + + STM32F777VI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, JPEG codec, DFSDM + Active + LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F777ZI + + STM32F777ZI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, JPEG codec, DFSDM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F778AI + + STM32F778AI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM, Vreg_OFF + Active + WLCSP 180L DIE 451 P 0.4 MM + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 ,MIPI DSI + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F779AI + + STM32F779AI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM + Active + WLCSP 180L DIE 451 P 0.4 MM + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 ,MIPI DSI + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F779BI + + STM32F779BI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM + Active + LQFP 208 28x28x1.4 + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 ,MIPI DSI + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F745IG + + STM32F745IG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 1024 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 140 + - + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 85 + + + + + STM32F745VE + + STM32F745VE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT + Arm Cortex-M7 + 216 + - + - + 512 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 85 + + + + + STM32F745VG + + STM32F745VG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT + Arm Cortex-M7 + 216 + - + - + 1024 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + - + 2 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 420 + -40 + 85 + + + + + STM32F745ZE + + STM32F745ZE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 85 + + + + + STM32F745ZG + + STM32F745ZG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M7 + 216 + - + - + 1024 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + - + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 105,85 + + + + + STM32F746BE + + STM32F746BE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT + Active + LQFP 208 28x28x1.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 85 + + + + + STM32F746BG + + STM32F746BG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT + Active + LQFP 208 28x28x1.4 + Arm Cortex-M7 + 216 + - + - + 1024 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 105,85 + + + + + STM32F746IE + + STM32F746IE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 512 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 140 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 85 + + + + + STM32F746IG + + STM32F746IG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 1024 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 140 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 105,85 + + + + + STM32F746NE + + STM32F746NE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M7 + 216 + - + - + 512 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 85 + + + + + STM32F746VE + + STM32F746VE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, TFT + Active + LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT + Arm Cortex-M7 + 216 + - + - + 512 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 85 + + + + + STM32F746VG + + STM32F746VG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT + Active + LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT + Arm Cortex-M7 + 216 + - + - + 1024 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + DCMI,Dual Quad SPI,FMC,FSMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 105,85 + + + + + STM32F746ZE + + STM32F746ZE + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT + Active + LQFP 144 20x20x1.4,WLCSP 143L DIE 449 P 0.4 MM + Arm Cortex-M7 + 216 + - + - + 512 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 85 + + + + + STM32F746ZG + + STM32F746ZG + High-performance and DSP with FPU ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT + Active + LQFP 144 20x20x1.4,WLCSP 143L DIE 449 P 0.4 MM + Arm Cortex-M7 + 216 + - + - + 1024 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + DCMI,Dual Quad SPI,FMC,FSMC,SDIO + - + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 105,85 + + + + + STM32F756BG + + STM32F756BG + High-performance and DSP with FPU ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT + Active + LQFP 208 28x28x1.4 + Arm Cortex-M7 + 216 + - + - + 1024 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Dual Quad SPI,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 85 + + + + + STM32F756IG + + STM32F756IG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 1024 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 140 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Dual Quad SPI,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 85 + + + + + STM32F756NG + + STM32F756NG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M7 + 216 + - + - + 1024 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Dual Quad SPI,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 85 + + + + + STM32F756VG + + STM32F756VG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT + Active + LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT + Arm Cortex-M7 + 216 + - + - + 1024 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 4 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Dual Quad SPI,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 85 + + + + + STM32F756ZG + + STM32F756ZG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT + Active + LQFP 144 20x20x1.4,WLCSP 143L DIE 449 P 0.4 MM + Arm Cortex-M7 + 216 + - + - + 1024 + - + 320 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 114 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Dual Quad SPI,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 1.7 + 472 + -40 + 85 + + + + + STM32F765BG + + STM32F765BG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM + Active + LQFP 208 28x28x1.4 + Arm Cortex-M7 + 216 + - + - + 1024 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + - + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F765BI + + STM32F765BI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM + Active + LQFP 208 28x28x1.4 + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + - + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F765IG + + STM32F765IG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 1024 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 140 + - + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F765II + + STM32F765II + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 140 + - + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 105,85 + + + + + STM32F765NG + + STM32F765NG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M7 + 216 + - + - + 1024 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + - + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 105,85 + + + + + STM32F765VG + + STM32F765VG + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM + Active + LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT + Arm Cortex-M7 + 216 + - + - + 1024 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + - + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 105,85 + + + + + STM32F765VI + + STM32F765VI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM + Active + LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + - + 82 + - + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F779II + + STM32F779II + High-performance and DSP with FPU, Arm Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM + Active + LQFP 176 24x24x1.4 + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 140 + LCD TFT Controller up to 1024x728 ,MIPI DSI + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32F779NI + + STM32F779NI + High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, HW crypto, SDRAM, TFT, MIPI-DSI, JPEG codec, DFSDM + Active + TFBGA 13X13X1.2 216L P 0.8 MM + Arm Cortex-M7 + 216 + - + - + 2048 + - + 512 + 12 + 2 + 24-bit downcounter,2xWDG,RTC + 24 + - + 2 + - + 168 + LCD TFT Controller up to 1024x728 ,MIPI DSI + 3 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 4 + - + - + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.7 + 3.6 + 2.5 + 420 + -40 + 85 + + + + + STM32H743AI + + STM32H743AI + High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M7 + 400 + - + - + 2048 + - + 1024 + 18 + 2 + 24-bit downcounter,2xWDG,HR Timer,LP timer,RTC + - + 20 + 2 + 2 + 131 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO + - + true + - + 1.62 + 3.6 + 7 + 278 + -40 + 85 + + + + + STM32H743BI + + STM32H743BI + High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals + Active + LQFP 208 28x28x1.4 + Arm Cortex-M7 + 400 + - + - + 2048 + - + 1024 + 18 + 2 + 24-bit downcounter,2xWDG,HR Timer,LP timer,RTC + - + 20 + 2 + 2 + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO + - + true + - + 1.62 + 3.6 + 7 + 278 + -40 + 85 + + + + + STM32H743II + + STM32H743II + High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 400 + - + - + 2048 + - + 1024 + 18 + 2 + 24-bit downcounter,2xWDG,HR Timer,LP timer,RTC + - + 20 + 2 + 2 + 140 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO + - + true + - + 1.62 + 3.6 + 7 + 278 + -40 + 85 + + + + + STM32H743VI + + STM32H743VI + High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals + Active + LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT + Arm Cortex-M7 + 400 + - + - + 2048 + - + 1024 + 18 + 2 + 24-bit downcounter,2xWDG,HR Timer,LP timer,RTC + - + 20 + 2 + 2 + 82 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO + - + true + - + 1.71 + 3.6 + 7 + 278 + -40,40 + 85 + + + + + STM32H743XI + + STM32H743XI + High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals + Active + TFBGA 14X14X1.2 P 0.8 240+25L + Arm Cortex-M7 + 400 + - + - + 2048 + - + 1024 + 18 + 2 + 24-bit downcounter,2xWDG,HR Timer,LP timer,RTC + - + 20 + 2 + 2 + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO + - + true + - + 1.62 + 3.6 + 7 + 278 + -40 + 85 + + + + + STM32H743ZI + + STM32H743ZI + High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals + Active + LQFP 144 20x20x1.4 + Arm Cortex-M7 + 400 + - + - + 2048 + - + 1024 + 18 + 2 + LP timer + - + 20 + 2 + 2 + 114 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO + - + true + - + 1.62 + 3.6 + 7 + 278 + -40 + 85 + + + + + STM32H753AI + + STM32H753AI + High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals including a Crypto accelerator + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M7 + 400 + - + - + 2048 + - + 1024 + 18 + 2 + 24-bit downcounter,2xWDG,HR Timer,RTC + - + 20 + 2 + 2 + 131 + - + 2 + - + 4 + 6 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO + - + true + - + 1.62 + 3.6 + - + - + -40 + 85 + + + + + STM32H753BI + + STM32H753BI + High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals including a Crypto accelerator + Active + LQFP 208 28x28x1.4 + Arm Cortex-M7 + 400 + - + - + 2048 + - + 1024 + 18 + 2 + 24-bit downcounter,2xWDG,HR Timer,RTC + - + 20 + - + 2 + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.62 + 3.6 + - + - + -40 + 85 + + + + + STM32H753II + + STM32H753II + High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals including a Crypto accelerator + Active + BGA 176,LQFP 176 24x24x1.4 + Arm Cortex-M7 + 400 + - + - + 2048 + - + 1024 + 18 + 2 + 24-bit downcounter,2xWDG,HR Timer,RTC + - + 20 + 2 + 2 + 140 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.62 + 3.6 + - + - + -40 + 85 + + + + + STM32H753VI + + STM32H753VI + High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals including a Crypto accelerator + Active + LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT + Arm Cortex-M7 + 400 + - + - + 2048 + - + 1024 + 18 + 2 + 24-bit downcounter,2xWDG,HR Timer,RTC + - + 20 + 2 + 2 + 82 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.71 + 3.6 + - + - + -40 + 85 + + + + + STM32H753XI + + STM32H753XI + High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals including a Crypto accelerator + Active + TFBGA 14X14X1.2 P 0.8 240+25L + Arm Cortex-M7 + 400 + - + - + 2048 + - + 1024 + 18 + 2 + 24-bit downcounter,2xWDG,HR Timer,RTC + - + 20 + 2 + 2 + 168 + LCD TFT Controller up to 1024x728 + 2 + - + 4 + 6 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.62 + 3.6 + - + - + -40 + 85 + + + + + STM32H753ZI + + STM32H753ZI + High-performance and DSP with DP-FPU, ARM Cortex-M7 MCU with 2MBytes Flash, 1MB RAM, 400 MHz CPU, Art Accelerator, L1 cache, external memory interface, large set of peripherals including a Crypto accelerator + Active + LQFP 144 20x20x1.4 + Arm Cortex-M7 + 400 + - + - + 2048 + - + 1024 + 18 + 2 + 24-bit downcounter,2xWDG,HR Timer,RTC + - + 20 + 2 + 2 + 114 + - + 2 + - + 4 + 6 + 3 + USB OTG FS,USB OTG FS + USB OTG FS/HS + 4 + 5 + - + 2 + Ethernet,HDMI CEC,S/PDIF,SAI + Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO + AES,DES/TDES,HMAC,MD5,SHA + true + - + 1.62 + 3.6 + - + - + -40 + 85 + + + + diff --git a/stm32/owl/STM32 Mainstream MCUs.owl b/stm32/owl/STM32 Mainstream MCUs.owl new file mode 100644 index 0000000..3f971b6 --- /dev/null +++ b/stm32/owl/STM32 Mainstream MCUs.owl @@ -0,0 +1,11121 @@ + + + + + Chip Has I/Os (High Current) + + ios-high-current + + + + Chip Has Display controller + + display-controller + + + + Chip Has CAN typ + + can--typ + + + + Chip Has CAN FD typ + + can-fd-typ + + + + Chip Has I2C typ + + i2c-typ + + + + Chip Has SPI typ + + spi-typ + + + + Chip Has I2S typ + + i2s-typ + + + + Chip Has USB Type + + usb-type + + + + Chip Has USART typ + + usart--typ + + + + Chip Has UART typ + + uart-typ + + + + Chip Has Connectivity supported + + connectivity-supported + + + + Chip Has Integrated op-amps + + integrated-op-amps + + + + Chip Has Additional Serial Interfaces + + additional-serial-interfaces + + + + Chip Has Parallel Interfaces + + parallel-interfaces + + + + Chip Has Crypto-HASH + + crypto-hash + + + + Chip Has TRNG typ + + trng-typ + + + + Chip Has SMPS + + smps + + + + Chip Has Supply Voltage (V) min + + supply-voltage-v-min + + + + Chip Has Supply Voltage (V) max + + supply-voltage-v-max + + + + Chip Has Supply Current (uA) (Lowest power mode) typ + + supply-current-ua-lowest-power-mode-typ + + + + Chip Has Supply Current (uA) (Run mode (per Mhz)) typ + + supply-current-ua-run-mode-per-mhz-typ + + + + Chip Has Operating Temperature (oC) min + + operating-temperature-oc-min + + + + Chip Has Operating Temperature (oC) max + + operating-temperature-oc-max + + + + + STM32F031K6 + STM32F031K6 + Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0 + 48 + - + - + 32 + - + 4 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 27 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F334K6 + STM32F334K6 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 32-Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer + Active + LQFP 32 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 32 + - + 16 + 7 + 1 + 2xWDG,RTC,SysTick,hr timer (10x217ps) + 9 + - + 3 + 2 + 25 + - + 1 + - + 1 + 1 + - + - + 2 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1 + 420 + -40 + 105,85 + + + + + STM32F030C6 + STM32F030C6 + Mainstream ARM Cortex-M0 Value line MCU with 32 Kbytes Flash, 48 MHz CPU + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0 + 48 + - + - + 32 + - + 4 + 5 + - + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 39 + - + - + - + 1 + 1 + - + - + 1 + - + - + - + - + - + - + - + - + 2.4 + 3.6 + 3.4 + 250 + -40 + 85 + + + + + + + STM32 Mainstream MCUs + + + + Chip Has Part Number + + part-number + + + + Chip Has General Description + + general-description + + + + Chip Has Marketing Status + + marketing-status + + + + Chip Has Package + + package + + + + Chip Has Core + + core + + + + Chip Has Operating Frequency (MHz) (Processor speed) + + operating-frequency-mhz-processor-speed + + + + Chip Has Co-Processor type + + co-processor-type + + + + Chip Has Co-Processor frequency (MHz) max + + co-processor-frequency-mhz-max + + + + Chip Has FLASH Size (kB) (Prog) + + flash-size-kb-prog + + + + Chip Has Data E2PROM (B) nom + + data-e2prom-b-nom + + + + Chip Has RAM Size (kB) + + ram-size-kb + + + + Chip Has Timers (16 bit) typ + + timers-16-bit-typ + + + + Chip Has Timers (32 bit) typ + + timers-32-bit-typ + + + + Chip Has Other timer functions + + other-timer-functions + + + + Chip Has A/D Converters (12-bit channels) + + ad-converters-12-bit-channels + + + + Chip Has A/D Converters (16-bit channels) + + ad-converters-16-bit-channels + + + + Chip Has D/A Converters (12 bit) typ + + da-converters--12-bit-typ + + + + Chip Has Comparator + + comparator + + + + + STM32F030C8 + STM32F030C8 + Mainstream ARM Cortex-M0 Value line MCU with 64 Kbytes Flash, 48 MHz CPU + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0 + 48 + - + - + 64 + - + 8 + 7 + - + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 39 + - + - + - + 2 + 2 + - + - + 2 + - + - + - + - + - + - + - + - + 2.4 + 3.6 + 3.4 + 250 + -40 + 85 + + + + + STM32F030CC + STM32F030CC + Mainstream ARM Cortex-M0 Value line MCU with 256 Kbytes Flash, 48 MHz CPU + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0 + 48 + - + - + 256 + - + 32 + 8 + - + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 38 + - + - + - + 2 + 2 + - + - + 6 + - + - + - + - + - + - + - + - + 2.4 + 3.6 + 1.8 + 306 + -40 + 85 + + + + + STM32F030F4 + STM32F030F4 + Mainstream ARM Cortex-M0 Value line MCU with 16 Kbytes Flash, 48 MHz CPU + Active + TSSOP 20 + Arm Cortex-M0 + 48 + - + - + 16 + - + 4 + 5 + - + 24-bit downcounter,2xWDG,RTC + 9 + - + - + - + 15 + - + - + - + 1 + 1 + - + - + 1 + - + - + - + - + - + - + - + - + 2.4 + 3.6 + 3.4 + 250 + -40 + 85 + + + + + STM32F030K6 + STM32F030K6 + Mainstream ARM Cortex-M0 Value line MCU with 32 Kbytes Flash, 48 MHz CPU + Active + LQFP 32 7x7x1.4 + Arm Cortex-M0 + 48 + - + - + 32 + - + 4 + 5 + - + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 26 + - + - + - + 1 + 1 + - + - + 1 + - + - + - + - + - + - + - + - + 2.4 + 3.6 + 3.4 + 250 + -40 + 85 + + + + + STM32F030R8 + STM32F030R8 + Mainstream ARM Cortex-M0 Value line MCU with 64 Kbytes Flash, 48 MHz CPU + Active + LQFP 64 10x10x1.4 + Arm Cortex-M0 + 48 + - + - + 64 + - + 8 + 7 + - + 24-bit downcounter,2xWDG,RTC + 16 + - + - + - + 55 + - + - + - + 2 + 2 + - + - + 2 + - + - + - + - + - + - + - + - + 2.4 + 3.6 + 3.4 + 250 + -40 + 85 + + + + + STM32F030RC + STM32F030RC + Mainstream ARM Cortex-M0 Value line MCU with 256 Kbytes Flash, 48 MHz CPU + Active + LQFP 64 10x10x1.4 + Arm Cortex-M0 + 48 + - + - + 256 + - + 32 + 8 + - + 24-bit downcounter,2xWDG,RTC + 16 + - + - + - + 52 + - + - + - + 2 + 2 + - + - + 6 + - + - + - + - + - + - + - + - + 2.4 + 3.6 + 1.8 + 306 + -40 + 85 + + + + + STM32F031C4 + STM32F031C4 + Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU, motor control + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0 + 48 + - + - + 16 + - + 4 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 39 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 85 + + + + + STM32F031C6 + STM32F031C6 + Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0 + 48 + - + - + 32 + - + 4 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 39 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F031E6 + STM32F031E6 + Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control + Active + WLCSP 25L P 0.4 MM DIE 444 + Arm Cortex-M0 + 48 + - + - + 32 + - + 4 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 20 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 85 + + + + + STM32F031F4 + STM32F031F4 + Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU + Active + TSSOP 20 + Arm Cortex-M0 + 48 + - + - + 16 + - + 4 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 9 + - + - + - + 15 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F051K8 + STM32F051K8 + Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU, motor control and CEC functions + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0 + 48 + - + - + 64 + - + 8 + 7 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 1 + 2 + 27 + - + - + - + 1 + 1 + 1 + - + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F051R4 + STM32F051R4 + Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU, motor control and CEC functions + Active + LQFP 64 10x10x1.4 + Arm Cortex-M0 + 48 + - + - + 16 + - + 8 + 7 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 1 + 2 + 55 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 85 + + + + + STM32F051R6 + STM32F051R6 + Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control and CEC functions + Active + LQFP 64 10x10x1.4 + Arm Cortex-M0 + 48 + - + - + 32 + - + 8 + 7 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 1 + 2 + 55 + - + - + - + 1 + 1 + 1 + - + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F051R8 + STM32F051R8 + Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU, motor control and CEC functions + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM + Arm Cortex-M0 + 48 + - + - + 64 + - + 8 + 7 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 1 + 2 + 55 + - + - + - + 2 + 2 + 1 + - + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F051T8 + STM32F051T8 + Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU, motor control and CEC functions + Active + WLCSP 36L P 0.4 MM DIE 440 + Arm Cortex-M0 + 48 + - + - + 64 + - + 8 + 7 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 1 + 2 + 29 + - + - + - + 1 + 1 + 1 + - + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 85 + + + + + STM32F058C8 + STM32F058C8 + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M0 + 48 + - + - + 64 + - + 8 + 7 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + 2 + 39 + - + - + - + 2 + 2 + 1 + - + 2 + - + - + - + HDMI CEC + - + - + - + - + 1.65 + 1.95 + 1.7 + 250 + -40 + 85 + + + + + STM32F058R8 + STM32F058R8 + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM + Arm Cortex-M0 + 48 + - + - + 64 + - + 8 + 7 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + - + 2 + 55 + - + - + - + 2 + 2 + 1 + - + 2 + - + - + - + HDMI CEC + - + - + - + - + 1.65 + 1.95 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F058T8 + STM32F058T8 + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions + Active + WLCSP 36L P 0.4 MM DIE 440 + Arm Cortex-M0 + 48 + - + - + 64 + - + 8 + 7 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + 2 + 28 + - + - + - + 1 + 1 + 1 + - + 2 + - + - + - + HDMI CEC + - + - + - + - + 1.65 + 1.95 + 1.7 + 250 + -40 + 85 + + + + + STM32F070C6 + STM32F070C6 + Mainstream ARM Cortex-M0 Value line MCU with up to 32 Kbytes Flash, 48 MHz CPU, USB + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0 + 48 + - + - + 32 + - + 6 + 5 + - + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 37 + - + - + - + 1 + 1 + - + USB Device + 2 + - + - + - + - + - + - + - + - + 2.4 + 3.6 + 1.7 + 264 + -40 + 85 + + + + + STM32F070CB + STM32F070CB + Mainstream ARM Cortex-M0 Value line MCU with 128 Kbytes Flash, 48 MHz CPU, USB + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0 + 48 + - + - + 128 + - + 16 + 8 + - + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 37 + - + - + - + 2 + 2 + - + USB Device + 4 + - + - + - + - + - + - + - + - + 2.4 + 3.6 + 1.8 + 273 + -40 + 85 + + + + + STM32F070F6 + STM32F070F6 + Mainstream ARM Cortex-M0 Value line MCU with up to 32 Kbytes Flash, 48 MHz CPU, USB + Active + TSSOP 20 + Arm Cortex-M0 + 48 + - + - + 32 + - + 6 + 5 + - + 24-bit downcounter,2xWDG,RTC + 9 + - + - + - + 15 + - + - + - + 1 + 1 + - + USB Device + 2 + - + - + - + - + - + - + - + - + 2.4 + 3.6 + 1.7 + 264 + -40 + 85 + + + + + STM32F070RB + STM32F070RB + Mainstream ARM Cortex-M0 Value line MCU with 128 Kbytes Flash, 48 MHz CPU, USB + Active + LQFP 64 10x10x1.4 + Arm Cortex-M0 + 48 + - + - + 128 + - + 16 + 8 + - + 24-bit downcounter,2xWDG,RTC + 16 + - + - + - + 51 + - + - + - + 2 + 2 + - + USB Device + 4 + - + - + - + - + - + - + - + - + 2.4 + 3.6 + 1.8 + 273 + -40 + 85 + + + + + STM32F071C8 + STM32F071C8 + Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M0 + 48 + - + - + 64 + - + 16 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 2 + 2 + 37 + - + - + - + 2 + 2 + 2 + - + 4 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 260 + -40 + 85 + + + + + STM32F071CB + STM32F071CB + Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU and CEC functions + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 448 P 0.4 MM + Arm Cortex-M0 + 48 + - + - + 128 + - + 16 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 2 + 2 + 37 + - + - + - + 2 + 2 + 2 + - + 4 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 260 + -40 + 105,85 + + + + + STM32F071RB + STM32F071RB + Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU and CEC functions + Active + LQFP 64 10x10x1.4 + Arm Cortex-M0 + 48 + - + - + 128 + - + 16 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 51 + - + - + - + 2 + 2 + 2 + - + 4 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 260 + -40 + 105,85 + + + + + STM32F071V8 + STM32F071V8 + Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M0 + 48 + - + - + 64 + - + 16 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 87 + - + - + - + 2 + 2 + 2 + - + 4 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 260 + -40 + 105,85 + + + + + STM32F071VB + STM32F071VB + Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU and CEC functions + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M0 + 48 + - + - + 128 + - + 16 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 87 + - + - + - + 2 + 2 + 2 + - + 4 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 260 + -40 + 85 + + + + + STM32F072C8 + STM32F072C8 + Mainstream ARM Cortex-M0 USB line MCU with 64 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M0 + 48 + - + - + 64 + - + 16 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 2 + 2 + 37 + - + 1 + - + 2 + 2 + 2 + USB Device + 4 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 260 + -40 + 105,85 + + + + + STM32F072R8 + STM32F072R8 + Mainstream ARM Cortex-M0 USB line MCU with 64 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + LQFP 64 10x10x1.4 + Arm Cortex-M0 + 48 + - + - + 64 + - + 16 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 51 + - + 1 + - + 2 + 2 + 2 + USB Device + 4 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 260 + -40 + 85 + + + + + STM32F072RB + STM32F072RB + Mainstream ARM Cortex-M0 USB line MCU with 128 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM + Arm Cortex-M0 + 48 + - + - + 128 + - + 16 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 51 + - + 1 + - + 2 + 2 + 2 + USB Device + 4 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 260 + -40 + 105,85 + + + + + STM32F072V8 + STM32F072V8 + Mainstream ARM Cortex-M0 USB line MCU with 64 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M0 + 48 + - + - + 64 + - + 16 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 87 + - + 1 + - + 2 + 2 + 2 + USB Device + 4 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 260 + -40 + 85 + + + + + STM32F072VB + STM32F072VB + Mainstream ARM Cortex-M0 USB line MCU with 128 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M0 + 48 + - + - + 128 + - + 16 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 87 + - + 1 + - + 2 + 2 + 2 + USB Device + 4 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 260 + -40 + 85 + + + + + STM32F078CB + STM32F078CB + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 128 Kbytes Flash, 48 MHz CPU, USB and CEC functions + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 448 P 0.4 MM + Arm Cortex-M0 + 48 + - + - + 128 + - + 16 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 2 + 2 + 36 + - + 1 + - + 2 + 2 + 2 + USB Device + 4 + - + - + - + HDMI CEC + - + - + - + - + 1.65 + 1.95 + 1.8 + 260 + -40 + 85 + + + + + STM32F078RB + STM32F078RB + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 128 Kbytes Flash, 48 MHz CPU, USB and CEC functions + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM + Arm Cortex-M0 + 48 + - + - + 128 + - + 16 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 50 + - + 1 + - + 2 + 2 + 2 + USB Device + 4 + - + - + - + HDMI CEC + - + - + - + - + 1.65 + 1.95 + 1.8 + 260 + -40 + 105,85 + + + + + STM32F078VB + STM32F078VB + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 128 Kbytes Flash, 48 MHz CPU, USB and CEC functions + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M0 + 48 + - + - + 128 + - + 16 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 86 + - + 1 + - + 2 + 2 + 2 + USB Device + 4 + - + - + - + HDMI CEC + - + - + - + - + 1.65 + 1.95 + 1.8 + 260 + -40 + 85 + + + + + STM32F091CB + STM32F091CB + Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU, CAN and CEC functions + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M0 + 48 + - + - + 128 + - + 32 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 2 + 2 + 38 + - + 1 + - + 2 + 2 + 2 + - + 6 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 306 + -40 + 105,85 + + + + + STM32F031F6 + STM32F031F6 + Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control + Active + TSSOP 20 + Arm Cortex-M0 + 48 + - + - + 32 + - + 4 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 9 + - + - + - + 15 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F031G4 + STM32F031G4 + Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU + Active + UFQFPN 28 4x4x0.55 + Arm Cortex-M0 + 48 + - + - + 16 + - + 4 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 23 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F031G6 + STM32F031G6 + Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control + Active + UFQFPN 28 4x4x0.55 + Arm Cortex-M0 + 48 + - + - + 32 + - + 4 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 23 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F031K4 + STM32F031K4 + Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M0 + 48 + - + - + 16 + - + 4 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 27 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 85 + + + + + STM32F038C6 + STM32F038C6 + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0 + 48 + - + - + 32 + - + 4 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 38 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + - + - + - + - + - + 1.65 + 1.95 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F038E6 + STM32F038E6 + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + WLCSP 25L P 0.4 MM DIE 444 + Arm Cortex-M0 + 48 + - + - + 32 + - + 4 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 9 + - + - + - + 20 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + - + - + - + - + - + 1.65 + 1.95 + 1.7 + 250 + -40 + 85 + + + + + STM32F038F6 + STM32F038F6 + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + TSSOP 20 + Arm Cortex-M0 + 48 + - + - + 32 + - + 4 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 8 + - + - + - + 14 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + - + - + - + - + - + 1.65 + 1.95 + 1.7 + 250 + -40 + 85 + + + + + STM32F038G6 + STM32F038G6 + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + UFQFPN 28 4x4x0.55 + Arm Cortex-M0 + 48 + - + - + 32 + - + 4 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 9 + - + - + - + 22 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + - + - + - + - + - + 1.65 + 1.95 + 1.7 + 250 + -40 + 85 + + + + + STM32F038K6 + STM32F038K6 + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M0 + 48 + - + - + 32 + - + 4 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 26 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + - + - + - + - + - + 1.65 + 1.95 + 1.7 + 250 + -40 + 85 + + + + + STM32F042C4 + STM32F042C4 + Mainstream ARM Cortex-M0 USB line MCU with 16 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M0 + 48 + - + - + 16 + - + 6 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 38 + - + 1 + - + 1 + 2 + 1 + USB Device + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 85 + + + + + STM32F042C6 + STM32F042C6 + Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M0 + 48 + - + - + 32 + - + 6 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 38 + - + 1 + - + 1 + 2 + 1 + USB Device + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F042F4 + STM32F042F4 + Mainstream ARM Cortex-M0 USB line MCU with 16 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + TSSOP 20 + Arm Cortex-M0 + 48 + - + - + 16 + - + 6 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 9 + - + - + - + 16 + - + 1 + - + 1 + 1 + 1 + USB Device + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 85 + + + + + STM32F042F6 + STM32F042F6 + Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + TSSOP 20 + Arm Cortex-M0 + 48 + - + - + 32 + - + 6 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 9 + - + - + - + 16 + - + 1 + - + 1 + 1 + 1 + USB Device + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F042G4 + STM32F042G4 + Mainstream ARM Cortex-M0 USB line MCU with 16 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + UFQFPN 28 4x4x0.55 + Arm Cortex-M0 + 48 + - + - + 16 + - + 6 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 24 + - + 1 + - + 1 + 1 + 1 + USB Device + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 85 + + + + + STM32F042G6 + STM32F042G6 + Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + UFQFPN 28 4x4x0.55 + Arm Cortex-M0 + 48 + - + - + 32 + - + 6 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 24 + - + 1 + - + 1 + 1 + 1 + USB Device + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 85 + + + + + STM32F042K4 + STM32F042K4 + Mainstream ARM Cortex-M0 USB line MCU with 16 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0 + 48 + - + - + 16 + - + 6 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 28 + - + 1 + - + 1 + 1 + 1 + USB Device + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 85 + + + + + STM32F042K6 + STM32F042K6 + Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0 + 48 + - + - + 32 + - + 6 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 28 + - + 1 + - + 1 + 1 + 1 + USB Device + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F042T6 + STM32F042T6 + Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + WLCSP 36L DIE 445 P 0.4 MM + Arm Cortex-M0 + 48 + - + - + 32 + - + 6 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 30 + - + 1 + - + 1 + 1 + 1 + USB Device + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 85 + + + + + STM32F048C6 + STM32F048C6 + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M0 + 48 + - + - + 32 + - + 6 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 38 + - + 1 + - + 1 + 2 + 1 + USB Device + 2 + - + - + - + HDMI CEC + - + - + - + - + 1.65 + 1.95 + 1.7 + 250 + -40 + 85 + + + + + STM32F048G6 + STM32F048G6 + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + UFQFPN 28 4x4x0.55 + Arm Cortex-M0 + 48 + - + - + 32 + - + 6 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 24 + - + 1 + - + 1 + 1 + 1 + USB Device + 2 + - + - + - + HDMI CEC + - + - + - + - + 1.65 + 1.95 + 1.7 + 250 + -40 + 85 + + + + + STM32F048T6 + STM32F048T6 + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions + Active + WLCSP 36L DIE 445 P 0.4 MM + Arm Cortex-M0 + 48 + - + - + 32 + - + 6 + 5 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + - + - + 30 + - + 1 + - + 1 + 1 + 1 + USB Device + 2 + - + - + - + HDMI CEC + - + - + - + - + 1.65 + 1.95 + 1.7 + 250 + -40 + 85 + + + + + STM32F051C4 + STM32F051C4 + Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU, motor control and CEC functions + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M0 + 48 + - + - + 16 + - + 8 + 7 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 1 + 2 + 39 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 85 + + + + + STM32F051C6 + STM32F051C6 + Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control and CEC functions + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M0 + 48 + - + - + 32 + - + 8 + 7 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 1 + 2 + 39 + - + - + - + 1 + 1 + 1 + - + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F051C8 + STM32F051C8 + Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU, motor control and CEC functions + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M0 + 48 + - + - + 64 + - + 8 + 7 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 1 + 2 + 39 + - + - + - + 2 + 2 + 1 + - + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F051K4 + STM32F051K4 + Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU, motor control and CEC functions + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0 + 48 + - + - + 16 + - + 8 + 7 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 1 + 2 + 27 + - + - + - + 1 + 1 + 1 + - + 1 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F051K6 + STM32F051K6 + Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control and CEC functions + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0 + 48 + - + - + 32 + - + 8 + 7 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 1 + 2 + 27 + - + - + - + 1 + 1 + 1 + - + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 250 + -40 + 105,85 + + + + + STM32F091CC + STM32F091CC + Mainstream ARM Cortex-M0 Access line MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M0 + 48 + - + - + 256 + - + 32 + 8 + 1 + 24-bit downcounter,2xWDG,IR Timer,RTC + 10 + - + 2 + 2 + 38 + - + 1 + - + 2 + 2 + 2 + - + 6 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 306 + -40 + 105,85 + + + + + STM32F091RB + STM32F091RB + Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU, CAN and CEC functions + Active + LQFP 64 10x10x1.4 + Arm Cortex-M0 + 48 + - + - + 128 + - + 32 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 52 + - + 1 + - + 2 + 2 + 2 + - + 8 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 306 + -40 + 85 + + + + + STM32F091RC + STM32F091RC + Mainstream ARM Cortex-M0 Access line MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 442 P 0.4 MM + Arm Cortex-M0 + 48 + - + - + 256 + - + 32 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 52 + - + 1 + - + 2 + 2 + 2 + - + 8 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 306 + -40 + 105,85 + + + + + STM32F091VB + STM32F091VB + Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU, CAN and CEC functions + Active + LQFP 100 14x14x1.4 + Arm Cortex-M0 + 48 + - + - + 128 + - + 32 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 88 + - + 1 + - + 2 + 2 + 2 + - + 8 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 306 + -40 + 105,85 + + + + + STM32F091VC + STM32F091VC + Mainstream ARM Cortex-M0 Access line MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M0 + 48 + - + - + 256 + - + 32 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 88 + - + 1 + - + 2 + 2 + 2 + - + 8 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.8 + 306 + -40 + 105,85 + + + + + STM32F098CC + STM32F098CC + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M0 + 48 + - + - + 256 + - + 32 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 10 + - + 2 + 2 + 37 + - + 1 + - + 2 + 2 + 2 + - + 8 + - + - + - + HDMI CEC + - + - + - + - + 1.65 + 1.95 + 1.8 + 306 + -40 + 105,85 + + + + + STM32F098RC + STM32F098RC + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 442 P 0.4 MM + Arm Cortex-M0 + 48 + - + - + 256 + - + 32 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 51 + - + 1 + - + 2 + 2 + 2 + - + 8 + - + - + - + HDMI CEC + - + - + - + - + 1.65 + 1.95 + 1.8 + 306 + -40 + 85 + + + + + STM32F098VC + STM32F098VC + Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M0 + 48 + - + - + 256 + - + 32 + 8 + 1 + 24-bit downcounter,2xWDG,RTC + 16 + - + 2 + 2 + 87 + - + 1 + - + 2 + 2 + 2 + - + 8 + - + - + - + HDMI CEC + - + - + - + - + 1.65 + 1.95 + 1.8 + 306 + -40 + 85 + + + + + STM32F100C4 + STM32F100C4 + Mainstream Value line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 48 7x7x1.4 + Arm Cortex-M3 + 24 + - + - + 16 + - + 4 + 6 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + 2 + - + 37 + - + - + - + 1 + 1 + - + - + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 358 + -40 + 105,85 + + + + + STM32F100C6 + STM32F100C6 + Mainstream Value line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 48 7x7x1.4 + Arm Cortex-M3 + 24 + - + - + 32 + - + 4 + 6 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + 2 + 0 + 37 + - + - + - + 1 + 1 + - + - + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 358 + -40 + 105,85 + + + + + STM32F101RD + STM32F101RD + Mainstream Access line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 36 MHz CPU + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 36 + - + - + 384 + - + 48 + 6 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F101RE + STM32F101RE + Mainstream Access line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 36 MHz CPU + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 36 + - + - + 512 + - + 48 + 6 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F101RF + STM32F101RF + Mainstream Access line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 36 MHz CPU + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 36 + - + - + 768 + - + 80 + 12 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F101RG + STM32F101RG + Mainstream Access line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 36 MHz CPU + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 36 + - + - + 1024 + - + 80 + 12 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F101T4 + STM32F101T4 + Mainstream Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 36 MHz CPU + Active + VFQFPN 36 6x6x1-0 + Arm Cortex-M3 + 36 + - + - + 16 + - + 4 + 2 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 26 + - + - + - + 1 + 1 + - + - + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 363 + -40 + 85 + + + + + STM32F101T6 + STM32F101T6 + Mainstream Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 36 MHz CPU + Active + VFQFPN 36 6x6x1-0 + Arm Cortex-M3 + 36 + - + - + 32 + - + 6 + 2 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 26 + - + - + - + 1 + 1 + - + - + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 363 + -40 + 85 + + + + + STM32F101T8 + STM32F101T8 + Mainstream Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 36 MHz CPU + Active + VFQFPN 36 6x6x1-0 + Arm Cortex-M3 + 36 + - + - + 64 + - + 10 + 3 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 26 + - + - + - + 1 + 1 + - + - + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 391 + -40 + 85 + + + + + STM32F101TB + STM32F101TB + Mainstream Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 36 MHz CPU + Active + VFQFPN 36 6x6x1-0 + Arm Cortex-M3 + 36 + - + - + 128 + - + 16 + 3 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 26 + - + - + - + 1 + 1 + - + - + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 391 + -40 + 85 + + + + + STM32F101V8 + STM32F101V8 + Mainstream Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 36 MHZ CPU + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 36 + - + - + 64 + - + 10 + 3 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 80 + - + - + - + 2 + 2 + - + - + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 391 + -40 + 85 + + + + + STM32F101VB + STM32F101VB + Mainstream Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 36 MHz CPU + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 36 + - + - + 128 + - + 16 + 3 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 80 + - + - + - + 2 + 2 + - + - + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 391 + -40 + 85 + + + + + STM32F101VC + STM32F101VC + Mainstream Access line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 36 MHz CPU + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 36 + - + - + 256 + - + 32 + 6 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F101VD + STM32F101VD + Mainstream Access line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 36 MHz CPU + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 36 + - + - + 384 + - + 48 + 6 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F101VE + STM32F101VE + Mainstream Access line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 36 MHz CPU + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 36 + - + - + 512 + - + 48 + 6 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F101VF + STM32F101VF + Mainstream Access line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 36 MHz CPU + Active + LQFP 100 14x14x1.4,WLCSP 144L DIE 470 PITCH 0.4 + Arm Cortex-M3 + 36 + - + - + 768 + - + 80 + 12 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F101VG + STM32F101VG + Mainstream Access line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 36 MHz CPU + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 36 + - + - + 1024 + - + 80 + 12 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F101ZC + STM32F101ZC + Mainstream Access line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 36 MHz CPU + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 36 + - + - + 256 + - + 32 + 6 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 112 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F101ZD + STM32F101ZD + Mainstream Access line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 36 MHz CPU + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 36 + - + - + 384 + - + 48 + 6 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 112 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F101ZE + STM32F101ZE + Mainstream Access line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 36 MHz CPU + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 36 + - + - + 512 + - + 48 + 6 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 112 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F101ZF + STM32F101ZF + Mainstream Access line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 36 MHz CPU + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 36 + - + - + 768 + - + 80 + 12 + - + 24-bit downcounter,2xWDG,SysTick + 16 + - + 2 + 0 + 112 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F101ZG + STM32F101ZG + Mainstream Access line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 36 MHz CPU + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 36 + - + - + 1024 + - + 80 + 12 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 112 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F102C4 + STM32F102C4 + Mainstream USB Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 48 MHz CPU, USB FS + Active + LQFP 48 7x7x1.4 + Arm Cortex-M3 + 48 + - + - + 16 + - + 4 + 2 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 36 + - + - + - + 1 + 1 + - + USB Device + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.55 + 348 + -40 + 85 + + + + + STM32F102C6 + STM32F102C6 + Mainstream USB Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 48 MHz CPU, USB FS + Active + LQFP 48 7x7x1.4 + Arm Cortex-M3 + 48 + - + - + 32 + - + 6 + 2 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + - + 36 + - + - + - + 1 + 1 + - + USB Device + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.55 + 348 + -40 + 85 + + + + + STM32F102C8 + STM32F102C8 + Mainstream USB Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 48 MHz CPU, USB FS + Active + LQFP 48 7x7x1.4 + Arm Cortex-M3 + 48 + - + - + 64 + - + 10 + 3 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 36 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 373 + -40 + 85 + + + + + STM32F102CB + STM32F102CB + Mainstream USB Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 48 MHz CPU, USB FS + Active + LQFP 48 7x7x1.4 + Arm Cortex-M3 + 48 + - + - + 128 + - + 16 + 3 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 36 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 373 + -40 + 85 + + + + + STM32F102R4 + STM32F102R4 + Mainstream USB Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 48 MHz CPU, USB, FS + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 48 + - + - + 16 + - + 4 + 2 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 51 + - + - + - + 1 + 1 + - + USB Device + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.55 + 348 + -40 + 85 + + + + + STM32F102R6 + STM32F102R6 + Mainstream USB Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 48 MHz CPU, USB FS + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 48 + - + - + 32 + - + 6 + 2 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 51 + - + - + - + 1 + 1 + - + USB Device + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.55 + 348 + -40 + 85 + + + + + STM32F100C8 + STM32F100C8 + Mainstream Value line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 48 7x7x1.4 + Arm Cortex-M3 + 24 + - + - + 64 + - + 8 + 7 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + 2 + 0 + 37 + - + - + - + 2 + 2 + - + - + 3 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 358 + -40 + 105,85 + + + + + STM32F100CB + STM32F100CB + Mainstream Value line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 48 7x7x1.4 + Arm Cortex-M3 + 24 + - + - + 128 + - + 8 + 7 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + 2 + 0 + 37 + - + - + - + 2 + 2 + - + - + 3 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 358 + -40 + 105,85 + + + + + STM32F100R4 + STM32F100R4 + Mainstream Value line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 24 + - + - + 16 + - + 4 + 6 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + - + - + 1 + 1 + - + - + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 358 + -40 + 85 + + + + + STM32F100R6 + STM32F100R6 + Mainstream Value line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 24 + - + - + 32 + - + 4 + 6 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + - + - + 1 + 1 + - + - + 2 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 358 + -40 + 85 + + + + + STM32F100R8 + STM32F100R8 + Mainstream Value line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 24 + - + - + 64 + - + 8 + 7 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + - + - + 2 + 2 + - + - + 3 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 358 + -40 + 105,85 + + + + + STM32F100RB + STM32F100RB + Mainstream Value line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 24 + - + - + 128 + - + 8 + 7 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + - + - + 2 + 2 + - + - + 3 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 358 + -40 + 85 + + + + + STM32F100RC + STM32F100RC + Mainstream Value line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 24 + - + - + 256 + - + 24 + 11 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 51 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 2.2 + 396 + -40 + 85 + + + + + STM32F100RD + STM32F100RD + Mainstream Value line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 24 + - + - + 384 + - + 32 + 11 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 51 + - + - + - + 2 + 3 + - + - + 5 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 2.2 + 396 + -40 + 85 + + + + + STM32F100RE + STM32F100RE + Mainstream Value line, ARM Cortex-M3 MCU with 512 Kbytes, 24 MHz CPU, motor control and CEC functions + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 24 + - + - + 512 + - + 32 + 11 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 51 + - + - + - + 2 + 3 + - + - + 5 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 2.2 + 396 + -40 + 105,85 + + + + + STM32F100V8 + STM32F100V8 + Mainstream Value line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 24 + - + - + 64 + - + 8 + 7 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + - + - + 2 + 2 + - + - + 3 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 358 + -40 + 105,85 + + + + + STM32F100VB + STM32F100VB + Mainstream Value line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 24 + - + - + 128 + - + 8 + 7 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + - + - + 2 + 2 + - + - + 3 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 1.7 + 358 + -40 + 105,85 + + + + + STM32F100VC + STM32F100VC + Mainstream value line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 24 + - + - + 256 + - + 24 + 11 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 80 + - + - + - + 2 + 3 + - + - + 5 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 2.2 + 396 + -40 + 85 + + + + + STM32F100VD + STM32F100VD + Mainstream Value line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 24 + - + - + 384 + - + 32 + 11 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 80 + - + - + - + 2 + 3 + - + - + 5 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 2.2 + 396 + -40 + 105,85 + + + + + STM32F100VE + STM32F100VE + Mainstream Value line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 24 + - + - + 512 + - + 32 + 11 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 80 + - + - + - + 2 + 3 + - + - + 5 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 2.2 + 396 + -40 + 105,85 + + + + + STM32F100ZC + STM32F100ZC + Mainstream Value line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 24 + - + - + 256 + - + 24 + 11 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 112 + - + - + - + 2 + 3 + - + - + 5 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 2.2 + 396 + -40 + 85 + + + + + STM32F100ZD + STM32F100ZD + Mainstream Value line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 24 + - + - + 384 + - + 32 + 11 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 112 + - + - + - + 2 + 3 + - + - + 5 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 2.2 + 396 + -40 + 85 + + + + + STM32F100ZE + STM32F100ZE + Mainstream Value line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 24 MHz CPU, motor control and CEC functions + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 24 + - + - + 512 + - + 32 + 11 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 112 + - + - + - + 2 + 3 + - + - + 5 + - + - + - + HDMI CEC + - + - + - + - + 2 + 3.6 + 2.2 + 396 + -40 + 105,85 + + + + + STM32F101C4 + STM32F101C4 + Mainstream Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 36 MHz CPU + Active + LQFP 48 7x7x1.4 + Arm Cortex-M3 + 36 + - + - + 16 + - + 4 + 2 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 36 + - + - + - + 1 + 1 + - + - + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 363 + -40 + 85 + + + + + STM32F101C6 + STM32F101C6 + Mainstream Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 36 MHz CPU + Active + LQFP 48 7x7x1.4 + Arm Cortex-M3 + 36 + - + - + 32 + - + 6 + 2 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 36 + - + - + - + 1 + 1 + - + - + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 363 + -40 + 85 + + + + + STM32F101C8 + STM32F101C8 + Mainstream Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 36 MHz CPU + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 36 + - + - + 64 + - + 10 + 3 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 36 + - + - + - + 2 + 2 + - + - + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 363 + -40 + 85 + + + + + STM32F101CB + STM32F101CB + Mainstream Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 36 MHz CPU + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 36 + - + - + 128 + - + 16 + 3 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 36 + - + - + - + 2 + 2 + - + - + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 363 + -40 + 85 + + + + + STM32F101R4 + STM32F101R4 + Mainstream Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 36 MHz CPU + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 36 + - + - + 16 + - + 4 + 2 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 51 + - + - + - + 1 + 1 + - + - + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 363 + -40 + 85 + + + + + STM32F101R6 + STM32F101R6 + Mainstream Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 36 MHz CPU + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 36 + - + - + 32 + - + 6 + 2 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 51 + - + - + - + 1 + 1 + - + - + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 363 + -40 + 85 + + + + + STM32F101R8 + STM32F101R8 + Mainstream Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 36 MHz CPU + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 36 + - + - + 64 + - + 10 + 3 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 51 + - + - + - + 2 + 2 + - + - + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 391 + -40 + 85 + + + + + STM32F101RB + STM32F101RB + Mainstream Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 36 MHz CPU + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 36 + - + - + 128 + - + 16 + 3 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 51 + - + - + - + 2 + 2 + - + - + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 391 + -40 + 85 + + + + + STM32F101RC + STM32F101RC + Mainstream Access line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 36 MHz CPU + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 36 + - + - + 256 + - + 32 + 6 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + - + - + 2 + 3 + - + - + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 433 + -40 + 85 + + + + + STM32F102R8 + STM32F102R8 + Mainstream USB Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 48 MHz CPU, USB FS + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 48 + - + - + 64 + - + 10 + 3 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 51 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 373 + -40 + 85 + + + + + STM32F102RB + STM32F102RB + Mainstream USB Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 48 MHz CPU, USB FS + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 48 + - + - + 128 + - + 16 + 3 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 51 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 373 + -40 + 85 + + + + + STM32F103C4 + STM32F103C4 + Mainstream Performance line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LQFP 48 7x7x1.4 + Arm Cortex-M3 + 72 + - + - + 16 + - + 6 + 3 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 36 + - + 1 + - + 1 + 1 + - + USB Device + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.55 + 337 + -40 + 105,85 + + + + + STM32F103C6 + STM32F103C6 + Mainstream Performance line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 72 + - + - + 32 + - + 10 + 3 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 36 + - + 1 + - + 1 + 1 + - + USB Device + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.55 + 337 + -40 + 105,85 + + + + + STM32F103C8 + STM32F103C8 + Mainstream Performance line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LQFP 48 7x7x1.4 + Arm Cortex-M3 + 72 + - + - + 64 + - + 20 + 4 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 36 + - + 1 + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 373 + -40 + 105,85 + + + + + STM32F103CB + STM32F103CB + Mainstream Performance line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 72 + - + - + 128 + - + 20 + 4 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 36 + - + 1 + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 373 + -40 + 105,85 + + + + + STM32F103R4 + STM32F103R4 + Mainstream Performance line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 72 + - + - + 16 + - + 6 + 3 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 51 + - + 1 + - + 1 + 1 + - + USB Device + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.55 + 337 + -40 + 105,85 + + + + + STM32F103R6 + STM32F103R6 + Mainstream Performance line, ARM Cortex-M3 MCU with 32 Kbytes Clash, 72 MHz CPU, motor control, USB and CAN + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 72 + - + - + 32 + - + 10 + 3 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 51 + - + 1 + - + 1 + 1 + - + USB Device + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.55 + 337 + -40 + 105,85 + + + + + STM32F103R8 + STM32F103R8 + Mainstream Performance line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 72 + - + - + 64 + - + 20 + 4 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 51 + - + 1 + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 373 + -40 + 105,85 + + + + + STM32F103RB + STM32F103RB + Mainstream Performance line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 72 + - + - + 128 + - + 20 + 4 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 51 + - + 1 + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 373 + -40 + 85 + + + + + STM32F105VC + STM32F105VC + Mainstream Connectivity line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 72 + - + - + 256 + - + 64 + 7 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 393 + -40 + 105,85 + + + + + STM32F107RB + STM32F107RB + Mainstream Connectivity line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, Ethernet MAC, CAN and USB 2.0 OTG + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 72 + - + - + 128 + - + 64 + 7 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + 2 + - + 1 + 3 + 2 + USB OTG FS + 3 + 2 + - + - + Ethernet + - + - + - + - + 2 + 3.6 + 1.9 + 393 + -40 + 105,85 + + + + + STM32F107RC + STM32F107RC + Mainstream Connectivity line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, Ethernet MAC, CAN and USB 2.0 OTG + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 72 + - + - + 256 + - + 64 + 7 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + 2 + - + 1 + 3 + 2 + USB OTG FS + 3 + 2 + - + - + Ethernet + - + - + - + - + 2 + 3.6 + 1.9 + 393 + -40 + 105,85 + + + + + STM32F107VB + STM32F107VB + Mainstream Connectivity line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, Ethernet MAC, CAN and USB 2.0 OTG + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 72 + - + - + 128 + - + 64 + 7 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + 2 + - + 1 + 3 + 2 + USB OTG FS + 3 + 2 + - + - + Ethernet + - + - + - + - + 2 + 3.6 + 1.9 + 393 + -40 + 105,85 + + + + + STM32F107VC + STM32F107VC + Mainstream Connectivity line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, Ethernet MAC, CAN and USB 2.0 OTG + Active + LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4 + Arm Cortex-M3 + 72 + - + - + 256 + - + 64 + 7 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + 2 + - + 1 + 3 + 2 + USB OTG FS + 3 + 2 + - + - + Ethernet + - + - + - + - + 2 + 3.6 + 1.9 + 393 + -40 + 85 + + + + + STM32F301C6 + STM32F301C6 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 32 + - + 16 + 5 + 1 + 2xWDG,RTC,SysTick + 11 + - + 1 + 3 + 37 + - + - + - + 3 + 2 + 2 + - + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 105,85 + + + + + STM32F301C8 + STM32F301C8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp + Active + LQFP 48 7x7x1.4,WLCSP 49L DIE 439 P 0.4 MM + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 5 + 1 + 2xWDG,RTC,SysTick + 11 + - + 1 + 3 + 37 + - + - + - + 3 + 2 + 2 + - + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 105,85 + + + + + STM32F301K6 + STM32F301K6 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M4 + 72 + - + - + 32 + - + 16 + 5 + 1 + 2xWDG,RTC,SysTick + 8 + - + 1 + 2 + 24 + - + - + - + 3 + 2 + 2 + - + 2 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 349 + -40 + 105,85 + + + + + STM32F301K8 + STM32F301K8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 5 + 1 + 2xWDG,RTC,SysTick + 8 + - + 1 + 2 + 24 + - + - + - + 3 + 2 + 2 + - + 2 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 105,85 + + + + + STM32F301R6 + STM32F301R6 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz, 12-bit ADC 5 MSPS, Comparator, Op-Amp + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 32 + - + 16 + 5 + 1 + 2xWDG,RTC,SysTick + 15 + - + 1 + 3 + 51 + - + - + - + 3 + 2 + 2 + - + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 85 + + + + + STM32F301R8 + STM32F301R8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 5 + 1 + 2xWDG,RTC,SysTick + 15 + - + 1 + 3 + 51 + - + - + - + 3 + 2 + 2 + - + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 85 + + + + + STM32F302C6 + STM32F302C6 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 32 + - + 16 + 5 + 1 + 2xWDG,RTC,SysTick + 11 + - + 1 + 3 + 37 + - + 1 + - + 3 + 2 + 2 + USB Device + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 85 + + + + + STM32F302C8 + STM32F302C8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp + Active + LQFP 48 7x7x1.4,WLCSP 49L DIE 439 P 0.4 MM + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 5 + 1 + 2xWDG,RTC,SysTick + 11 + - + 1 + 3 + 37 + - + 1 + - + 3 + 2 + 2 + USB Device + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 105,85 + + + + + STM32F302CB + STM32F302CB + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 128 + - + 32 + 7 + 1 + 2xWDG,RTC,SysTick + 9 + - + 1 + 4 + 37 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105,85 + + + + + STM32F302CC + STM32F302CC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 256 + - + 40 + 7 + 1 + 2xWDG,RTC,SysTick + 9 + - + 1 + 4 + 37 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105,85 + + + + + STM32F302K6 + STM32F302K6 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M4 + 72 + - + - + 32 + - + 16 + 5 + 1 + 2xWDG,RTC,SysTick + 8 + - + 1 + 2 + 24 + - + 1 + - + 3 + 2 + 2 + USB Device + 2 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 85 + + + + + STM32F302K8 + STM32F302K8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 5 + 1 + 2xWDG,RTC,SysTick + 8 + - + 1 + 2 + 24 + - + 1 + - + 3 + 2 + 2 + USB Device + 2 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 349 + -40 + 105,85 + + + + + STM32F302R6 + STM32F302R6 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 32 + - + 16 + 5 + 1 + 2xWDG,RTC,SysTick + 15 + - + 1 + 3 + 51 + - + 1 + - + 3 + 2 + 2 + USB Device + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 85 + + + + + STM32F302R8 + STM32F302R8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 5 + 1 + 2xWDG,RTC,SysTick + 15 + - + 1 + 3 + 51 + - + 1 + - + 3 + 2 + 2 + USB Device + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 105,85 + + + + + STM32F302RB + STM32F302RB + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 128 + - + 32 + 7 + 1 + 2xWDG,RTC,SysTick + 16 + - + 1 + 4 + 52 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + 2 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105,85 + + + + + STM32F302RC + STM32F302RC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 256 + - + 40 + 7 + 1 + 2 x WDG,RTC,SysTick + 16 + - + 1 + 4 + 52 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + 2 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105,85 + + + + + STM32F302RD + STM32F302RD + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 384 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 16 + - + 1 + 4 + 51 + - + 1 + - + 3 + 4 + 2 + USB Device + 3 + 2 + - + 2 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105,85 + + + + + STM32F302RE + STM32F302RE + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 512 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 16 + - + 1 + 4 + 51 + - + 1 + - + 3 + 4 + 2 + USB Device + 3 + 2 + - + 2 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105,85 + + + + + STM32F302VB + STM32F302VB + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU,128 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 72 + - + - + 128 + - + 32 + 7 + 1 + 2 x WDG,RTC,SysTick + 17 + - + 1 + 4 + 87 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + 2 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 85 + + + + + STM32F302VC + STM32F302VC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 100 14x14x1.4,WLCSP 100L P 0.4 MM DIE 422 + Arm Cortex-M4 + 72 + - + - + 256 + - + 40 + 7 + 1 + 2xWDG,IR Timer,RTC,SysTick + 17 + - + 1 + 4 + 87 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + 2 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105,85 + + + + + STM32F302VD + STM32F302VD + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 72 + - + - + 384 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 17 + - + 1 + 4 + 86 + - + 1 + - + 3 + 4 + 2 + USB Device + 3 + 2 + - + 2 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 85 + + + + + STM32F103RC + STM32F103RC + Mainstream Performance line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LQFP 64 10x10x1.4,WLCSP 64 + Arm Cortex-M3 + 72 + - + - + 256 + - + 64 + 8 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 105,85 + + + + + STM32F103RD + STM32F103RD + Mainstream Performance line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LQFP 64 10x10x1.4,WLCSP 64 + Arm Cortex-M3 + 72 + - + - + 384 + - + 64 + 8 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 85 + + + + + STM32F103RE + STM32F103RE + Mainstream Performance line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LQFP 64 10x10x1.4,WLCSP 64 + Arm Cortex-M3 + 72 + - + - + 512 + - + 64 + 8 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 105,85 + + + + + STM32F103RF + STM32F103RF + Mainstream Performance line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 72 + - + - + 768 + - + 96 + 14 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 105,85 + + + + + STM32F103RG + STM32F103RG + Mainstream Performance line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 72 MHz CPU, motor control, USB and CAN + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 72 + - + - + 1024 + - + 96 + 14 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 105,85 + + + + + STM32F103T4 + STM32F103T4 + Mainstream Performance line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + VFQFPN 36 6x6x1-0 + Arm Cortex-M3 + 72 + - + - + 16 + - + 6 + 3 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 26 + - + 1 + - + 1 + 1 + - + USB Device + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.55 + 337 + -40 + 105,85 + + + + + STM32F103T6 + STM32F103T6 + Mainstream Performance line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + VFQFPN 36 6x6x1-0 + Arm Cortex-M3 + 72 + - + - + 32 + - + 10 + 3 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 26 + - + 1 + - + 1 + 1 + - + USB Device + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.55 + 373 + -40 + 105,85 + + + + + STM32F103T8 + STM32F103T8 + Mainstream Performance line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + VFQFPN 36 6x6x1-0 + Arm Cortex-M3 + 72 + - + - + 64 + - + 20 + 4 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 26 + - + 1 + - + 1 + 1 + - + USB Device + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 373 + -40 + 105,85 + + + + + STM32F103TB + STM32F103TB + Mainstream Performance line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + VFQFPN 36 6x6x1-0 + Arm Cortex-M3 + 72 + - + - + 128 + - + 20 + 4 + - + 2 x WDG,24-bit down counter,RTC + 10 + - + - + 0 + 26 + - + 1 + - + 1 + 1 + - + USB Device + 2 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 373 + -40 + 85 + + + + + STM32F103V8 + STM32F103V8 + Mainstream Performance line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4 + Arm Cortex-M3 + 72 + - + - + 64 + - + 20 + 4 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 80 + - + 1 + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 373 + -40 + 85 + + + + + STM32F103VB + STM32F103VB + Mainstream Performance line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M3 + 72 + - + - + 128 + - + 20 + 4 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + - + 0 + 80 + - + 1 + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.7 + 373 + -40 + 105,85 + + + + + STM32F103VC + STM32F103VC + Mainstream Performance line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4 + Arm Cortex-M3 + 72 + - + - + 256 + - + 48 + 8 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + FSMC,SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 105,85 + + + + + STM32F103VD + STM32F103VD + Mainstream Performance line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4 + Arm Cortex-M3 + 72 + - + - + 384 + - + 64 + 8 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + FSMC,SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 105,85 + + + + + STM32F103VE + STM32F103VE + Mainstream Performance line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4 + Arm Cortex-M3 + 72 + - + - + 512 + - + 64 + 8 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + FSMC,SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 105,85 + + + + + STM32F103VF + STM32F103VF + Mainstream Performance line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 72MHz CPU, motor control, USB and CAN + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 72 + - + - + 768 + - + 96 + 14 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 105,85 + + + + + STM32F103VG + STM32F103VG + Mainstream Performance line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 72 MHz CPU, motor control, USB and CAN + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 72 + - + - + 1024 + - + 96 + 14 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 105,85 + + + + + STM32F103ZC + STM32F103ZC + Mainstream Performance line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4 + Arm Cortex-M3 + 72 + - + - + 256 + - + 48 + 8 + - + 2 x WDG,24-bit down counter,RTC + 21 + - + 2 + 0 + 112 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 105,85 + + + + + STM32F103ZD + STM32F103ZD + Mainstream Performance line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4 + Arm Cortex-M3 + 72 + - + - + 384 + - + 64 + 8 + - + 2 x WDG,24-bit down counter,RTC + 21 + - + 2 + 0 + 112 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 105,85 + + + + + STM32F103ZE + STM32F103ZE + Mainstream Performance line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4 + Arm Cortex-M3 + 72 + - + - + 512 + - + 64 + 8 + - + 2 x WDG,24-bit down counter,RTC + 21 + - + 2 + 0 + 112 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 105,85 + + + + + STM32F103ZF + STM32F103ZF + Mainstream Performance line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN + Active + LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4 + Arm Cortex-M3 + 72 + - + - + 768 + - + 96 + 14 + - + 2 x WDG,24-bit down counter,RTC + 21 + - + 2 + 0 + 112 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 105,85 + + + + + STM32F103ZG + STM32F103ZG + Mainstream Performance line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 72 MHz CPU, motor control, USB and CAN + Active + LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4 + Arm Cortex-M3 + 72 + - + - + 1024 + - + 96 + 14 + - + 2 x WDG,24-bit down counter,RTC + 21 + - + 2 + 0 + 112 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + - + - + SDIO + - + - + - + 2 + 3.6 + 1.9 + 421 + -40 + 105,85 + + + + + STM32F105R8 + STM32F105R8 + Mainstream Connectivity line, ARM Cortex-M3 with 64 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 72 + - + - + 64 + - + 64 + 7 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 393 + -40 + 105,85 + + + + + STM32F105RB + STM32F105RB + Mainstream Connectivity line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 72 + - + - + 128 + - + 64 + 7 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 393 + -40 + 105,85 + + + + + STM32F105RC + STM32F105RC + Mainstream Connectivity line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 72 + - + - + 256 + - + 64 + 7 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 51 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 393 + -40 + 105,85 + + + + + STM32F105V8 + STM32F105V8 + Mainstream Connectivity line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 72 + - + - + 64 + - + 64 + 7 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + - + 80 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 393 + -40 + 105,85 + + + + + STM32F105VB + STM32F105VB + Mainstream Connectivity line, ARM Cortex-M3 MCU with 128 Kbytes Flash,72 MHz CPU, CAN, USB 2.0 OTG + Active + LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4 + Arm Cortex-M3 + 72 + - + - + 128 + - + 64 + 7 + - + 2 x WDG,24-bit down counter,RTC + 16 + - + 2 + 0 + 80 + - + 2 + - + 2 + 3 + 2 + USB OTG FS + 3 + 2 + - + - + - + - + - + - + - + 2 + 3.6 + 1.9 + 393 + -40 + 105,85 + + + + + STM32F302VE + STM32F302VE + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 72 + - + - + 512 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 17 + - + 1 + 4 + 86 + - + 1 + - + 3 + 4 + 2 + USB Device + 3 + 2 + - + 2 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 85 + + + + + STM32F302ZD + STM32F302ZD + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 72 + - + - + 384 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 18 + - + 1 + 4 + 115 + - + 1 + - + 3 + 4 + 2 + USB Device + 3 + 2 + - + 2 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 85 + + + + + STM32F302ZE + STM32F302ZE + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 72 + - + - + 512 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 18 + - + 1 + 4 + 115 + - + 1 + - + 3 + 4 + 2 + USB Device + 3 + 2 + - + 2 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105,85 + + + + + STM32F303C6 + STM32F303C6 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 32 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 32 + - + 16 + 7 + 1 + 2xWDG,RTC,SysTick + 15 + - + 3 + 3 + 37 + - + 1 + - + 1 + 1 + - + - + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 85 + + + + + STM32F303C8 + STM32F303C8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp + Active + LQFP 48 7x7x1.4,WLCSP 49L DIE 438 PITCH 0.5 + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 7 + 1 + 2xWDG,RTC,SysTick + 15 + - + 3 + 3 + 37 + - + 1 + - + 1 + 1 + - + USB Device + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 85 + + + + + STM32F303CB + STM32F303CB + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 128 + - + 40 + 9 + 1 + 2 x WDG,RTC,SysTick + 15 + - + 2 + 7 + 37 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + - + - + 4 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105,85 + + + + + STM32F303CC + STM32F303CC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 256 + - + 48 + 9 + 1 + 2 x WDG,RTC,SysTick + 15 + - + 2 + 7 + 37 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + - + - + 4 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 85 + + + + + STM32F303K6 + STM32F303K6 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 32 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp + Active + LQFP 32 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 32 + - + 16 + 7 + 1 + 2xWDG,RTC,SysTick + 9 + - + 3 + 2 + 25 + - + 1 + - + 1 + 1 + - + USB Device + 2 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 85 + + + + + STM32F303K8 + STM32F303K8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp + Active + LQFP 32 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 7 + 1 + 2xWDG,RTC,SysTick + 9 + - + 3 + 2 + 25 + - + 1 + - + 1 + 1 + - + USB Device + 2 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 85 + + + + + STM32F303R6 + STM32F303R6 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 32 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 32 + - + 16 + 7 + 1 + 2xWDG,RTC,SysTick + 21 + - + 3 + 3 + 51 + - + 1 + - + 1 + 1 + - + USB Device + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 85 + + + + + STM32F373CC + STM32F373CC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 KBytes Flash, 72 MHz CPU, MPU, 16-bit ADC comparators + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 256 + - + 32 + 12 + 2 + 2 x WDG,RTC,SysTick + 9 + 8 + 3 + 2 + 36 + - + 1 + - + 2 + 3 + 3 + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.6 + 417 + -40 + 105,85 + + + + + STM32F373R8 + STM32F373R8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 12 + 2 + 2 x WDG,RTC,SysTick + 16 + 8 + 3 + 2 + 52 + - + 1 + - + 2 + 3 + 3 + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.6 + 417 + -40 + 85 + + + + + STM32F373RB + STM32F373RB + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 128 + - + 24 + 12 + 2 + 2 x WDG,RTC,SysTick + 16 + 8 + 3 + 2 + 52 + - + 1 + - + 2 + 3 + 3 + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.6 + 417 + -40 + 105,85 + + + + + STM32F373RC + STM32F373RC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 KBytes Flash, 72 MHz CPU, MPU, 16-bit ADC comparators + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 256 + - + 32 + 12 + 2 + 2 x WDG,RTC,SysTick + 16 + 8 + 3 + 2 + 52 + - + 1 + - + 2 + 3 + 3 + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.6 + 417 + -40 + 85 + + + + + STM32F373V8 + STM32F373V8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 12 + 2 + 2 x WDG,RTC,SysTick + 16 + 21 + 3 + 2 + 84 + - + 1 + - + 2 + 3 + 3 + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.6 + 417 + -40 + 85 + + + + + STM32F373VB + STM32F373VB + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 KBytes Flash, 72 MHz CPU, MPU, 16-bit ADC comparators + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 72 + - + - + 128 + - + 24 + 12 + 2 + 2 x WDG,RTC,SysTick + 16 + 21 + 3 + 2 + 84 + - + 1 + - + 2 + 3 + 3 + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.6 + 417 + -40 + 105,85 + + + + + STM32F373VC + STM32F373VC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 KBytes Flash, 72 MHz CPU, MPU, 16-bit ADC comparators + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 72 + - + - + 256 + - + 32 + 12 + 2 + 2 x WDG,RTC,SysTick + 16 + 21 + 3 + 2 + 84 + - + 1 + - + 2 + 3 + 3 + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.6 + 417 + -40 + 105,85 + + + + + STM32F378CC + STM32F378CC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 256 + - + 32 + 9 + 2 + 2xWDG,RTC,SysTick + 9 + 8 + 3 + 2 + 36 + - + 1 + - + 2 + 3 + 3 + - + 3 + - + - + - + - + - + - + - + - + 1.65 + 1.95 + 5.9 + 430 + -40 + 85 + + + + + STM32F378RC + STM32F378RC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators + Active + LQFP 64 10x10x1.4,WLCSP 66L DIE 432 R 8X8 0.4 MM P + Arm Cortex-M4 + 72 + - + - + 256 + - + 32 + 12 + 2 + 2xWDG,RTC,SysTick + 16 + 8 + 3 + 2 + 52 + - + 1 + - + 2 + 3 + 3 + - + 3 + - + - + - + - + - + - + - + - + 1.65 + 1.95 + 5.9 + 394 + -40 + 85 + + + + + STM32F378VC + STM32F378VC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 72 + - + - + 256 + - + 32 + 12 + 2 + 2xWDG,RTC,SysTick + 16 + 21 + 3 + 2 + 84 + - + 1 + - + 2 + 3 + 3 + - + 3 + - + - + - + - + - + - + - + - + 1.65 + 1.95 + 5.9 + 430 + -40 + 85 + + + + + STM32F398VE + STM32F398VE + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5Msps, PGA, comparators + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 72 + - + - + 512 + - + 80 + 10 + 1 + 2xWDG,RTC,SysTick + 38 + - + 2 + 7 + 86 + - + 1 + - + 3 + 4 + 2 + - + 3 + 2 + - + 4 + - + - + - + - + - + 1.65 + 1.95 + 9.8 + 392 + -40 + 85 + + + + + STM32F303R8 + STM32F303R8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 7 + 1 + 2xWDG,RTC,SysTick + 21 + - + 3 + 3 + 51 + - + 1 + - + 1 + 1 + - + USB Device + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1.4 + 353 + -40 + 85 + + + + + STM32F303RB + STM32F303RB + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 128 + - + 40 + 9 + 1 + 2xWDG,RTC,SysTick + 22 + - + 2 + 7 + 52 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + 4 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105,85 + + + + + STM32F303RC + STM32F303RC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 256 + - + 48 + 9 + 1 + 2xWDG,RTC,SysTick + 22 + - + 2 + 7 + 52 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + 4 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105,85 + + + + + STM32F303RD + STM32F303RD + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 384 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 384 + - + 80 + 9 + 1 + 2xWDG,RTC,SysTick + 22 + - + 2 + 7 + 51 + - + 1 + - + 3 + 4 + 2 + USB Device + 3 + 2 + - + 4 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105,85 + + + + + STM32F303RE + STM32F303RE + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 512 + - + 80 + 9 + 1 + 2xWDG,RTC,SysTick + 22 + - + 2 + 7 + 51 + - + 1 + - + 3 + 4 + 2 + USB Device + 3 + 2 + - + 4 + - + - + - + - + - + 2 + 3.6 + 2 + 450 + -40 + 105,85 + + + + + STM32F303VB + STM32F303VB + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 72 + - + - + 128 + - + 40 + 9 + 1 + 2xWDG,RTC,SysTick + 39 + - + 2 + 7 + 87 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + 4 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 85 + + + + + STM32F303VC + STM32F303VC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 100 14x14x1.4,WLCSP 100L P 0.4 MM DIE 422 + Arm Cortex-M4 + 72 + - + - + 256 + - + 48 + 9 + 1 + 2 x WDG,RTC,SysTick + 39 + - + 2 + 7 + 87 + - + 1 + - + 2 + 3 + 2 + USB Device + 3 + 2 + - + 4 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105,85 + + + + + STM32F303VD + STM32F303VD + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 72 + - + - + 384 + - + 80 + 10 + 1 + 2xWDG,RTC,SysTick + 39 + - + 2 + 7 + 86 + - + 1 + - + 3 + 4 + 2 + USB Device + 3 + 2 + - + 4 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 85 + + + + + STM32F303VE + STM32F303VE + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6,WLCSP 100L P 0.4MM DIE 446 + Arm Cortex-M4 + 72 + - + - + 512 + - + 80 + 10 + 1 + 2xWDG,RTC,SysTick + 39 + - + 2 + 7 + 86 + - + 1 + - + 3 + 4 + 2 + USB Device + 3 + 2 + - + 4 + - + FMC + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105 + + + + + STM32F303ZD + STM32F303ZD + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 72 + - + - + 384 + - + 80 + 10 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 7 + 115 + - + 1 + - + 3 + 4 + 2 + USB Device + 3 + 2 + - + 4 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 85 + + + + + STM32F303ZE + STM32F303ZE + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5 MSPS, PGA, comparators + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 72 + - + - + 512 + - + 80 + 10 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 7 + 115 + - + 1 + - + 3 + 4 + 2 + USB Device + 3 + 2 + - + 4 + - + - + - + - + - + 2 + 3.6 + 1.5 + 392 + -40 + 105,85 + + + + + STM32F318C8 + STM32F318C8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp + Active + LQFP 48 7x7x1.4,WLCSP 49L DIE 439 P 0.4 MM + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 5 + 1 + 2xWDG,RTC,SysTick + 11 + - + 1 + 3 + 37 + - + 1 + - + 3 + 2 + 2 + - + 3 + - + - + 1 + - + - + - + - + - + 1.65 + 1.95 + 4.2 + 350 + -40 + 85 + + + + + STM32F318K8 + STM32F318K8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, 12-bit ADC 5 MSPS, Comparator, Op-Amp + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 5 + 1 + 2xWDG,RTC,SysTick + 8 + - + 1 + 2 + 24 + - + 1 + - + 3 + 2 + 2 + - + 3 + - + - + 1 + - + - + - + - + - + 1.65 + 1.95 + 4.2 + 350 + -40 + 105,85 + + + + + STM32F328C8 + STM32F328C8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 7 + 1 + 2xWDG,RTC,SysTick + 14 + - + 3 + 3 + 37 + - + 1 + - + 1 + 1 + 2 + - + 3 + - + - + 1 + - + - + - + - + - + 1.65 + 1.95 + 6.8 + 420 + -40 + 85 + + + + + STM32F334C4 + STM32F334C4 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 16 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 16 + - + 16 + 7 + 1 + 2xWDG,RTC,SysTick + 15 + - + 3 + 3 + 37 + - + 1 + - + 1 + 1 + - + - + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1 + 420 + -40 + 85 + + + + + STM32F334C6 + STM32F334C6 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 32 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 32 + - + 16 + 7 + 1 + 2xWDG,RTC,SysTick,hr timer (10x217ps) + 15 + - + 3 + 3 + 37 + - + 1 + - + 1 + 1 + - + - + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1 + 420 + -40 + 105,85 + + + + + STM32F334C8 + STM32F334C8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer + Active + LQFP 48 7x7x1.4,WLCSP 49L DIE 438 PITCH 0.5 + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 7 + 1 + 2xWDG,IR Timer,RTC,SysTick,hr timer (10x217ps) + 15 + - + 3 + 3 + 37 + - + 1 + - + 1 + 1 + - + - + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1 + 420 + -40 + 105,85 + + + + + STM32F334K4 + STM32F334K4 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 16 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer + Active + LQFP 32 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 16 + - + 16 + 7 + 1 + 2xWDG,RTC,SysTick + 9 + - + 3 + 2 + 24 + - + 1 + - + 1 + 1 + - + - + 2 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1 + 420 + -40 + 85 + + + + + STM32F334K8 + STM32F334K8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer + Active + LQFP 32 7x7x1.4,UFQFPN 32L P 0.5 MM CHIP ON LEAD + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 7 + 1 + 2xWDG,RTC,SysTick,hr timer (10x217ps) + 9 + - + 3 + 2 + 25 + - + 1 + - + 1 + 1 + - + - + 2 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1 + 420 + -40 + 105,85 + + + + + STM32F334R6 + STM32F334R6 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 32 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 32 + - + 16 + 7 + 1 + 2xWDG,RTC,SysTick,hr timer (10x217ps) + 21 + - + 3 + 3 + 51 + - + 1 + - + 1 + 1 + - + - + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1 + 420 + -40 + 85 + + + + + STM32F334R8 + STM32F334R8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, CCM, 12-bit ADC 5 MSPS, comparators, op-amp, hr timer + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 7 + 1 + 2xWDG,RTC,SysTick,hr timer (10x217ps) + 21 + - + 3 + 3 + 51 + - + 1 + - + 1 + 1 + - + - + 3 + - + - + 1 + - + - + - + - + - + 2 + 3.6 + 1 + 420 + -40 + 105,85 + + + + + STM32F358CC + STM32F358CC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5Msps, PGA, comparators + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 256 + - + 48 + 9 + 1 + 2xWDG,RTC,SysTick + 14 + - + 2 + 7 + 36 + - + 1 + - + 2 + 3 + 2 + - + 3 + 2 + - + 4 + - + - + - + - + - + 1.65 + 1.95 + 7.4 + 368 + -40 + 85 + + + + + STM32F358RC + STM32F358RC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5Msps, PGA, comparators + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 72 + - + - + 256 + - + 48 + 9 + 1 + 2xWDG,RTC,SysTick + 21 + - + 2 + 7 + 51 + - + 1 + - + 2 + 3 + 2 + - + 3 + 2 + - + 4 + - + - + - + - + - + 1.65 + 1.95 + 7.4 + 368 + -40 + 85 + + + + + STM32F358VC + STM32F358VC + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, CCM, 12-bit ADC 5Msps, PGA, comparators + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 72 + - + - + 256 + - + 48 + 9 + 1 + 2xWDG,RTC,SysTick + 38 + - + 2 + 7 + 86 + - + 1 + - + 2 + 3 + 2 + - + 3 + 2 + - + 4 + - + - + - + - + - + 1.65 + 1.95 + 7.4 + 368 + -40 + 85 + + + + + STM32F373C8 + STM32F373C8 + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 64 + - + 16 + 12 + 2 + 2 x WDG,RTC,SysTick + 9 + 8 + 3 + 2 + 36 + - + 1 + - + 2 + 3 + 3 + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.6 + 417 + -40 + 85 + + + + + STM32F373CB + STM32F373CB + Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 KBytes Flash, 72MHz CPU, MPU, 16-bit ADC, comparators + Active + LQFP 48 7x7x1.4 + Arm Cortex-M4 + 72 + - + - + 128 + - + 24 + 12 + 2 + 2 x WDG,RTC,SysTick + 9 + 8 + 3 + 2 + 36 + - + 1 + - + 2 + 3 + 3 + USB Device + 3 + - + - + - + - + - + - + - + - + 2 + 3.6 + 1.6 + 417 + -40 + 105,85 + + + + diff --git a/stm32/owl/STM32 Ultra Low Power MCUs.owl b/stm32/owl/STM32 Ultra Low Power MCUs.owl new file mode 100644 index 0000000..789bdfb --- /dev/null +++ b/stm32/owl/STM32 Ultra Low Power MCUs.owl @@ -0,0 +1,13392 @@ + + + + + + + + Chip + + + + + ChipLine + + + + + + chip_line + Line + + + + + STM32 Ultra Low Power MCUs + + + + Chip Has Part Number + + part-number + + + + Chip Has General Description + + general-description + + + + Chip Has Marketing Status + + marketing-status + + + + Chip Has Package + + package + + + + Chip Has Core + + core + + + + Chip Has Operating Frequency (MHz) (Processor speed) + + operating-frequency-mhz-processor-speed + + + + Chip Has Co-Processor type + + co-processor-type + + + + Chip Has Co-Processor frequency (MHz) max + + co-processor-frequency-mhz-max + + + + Chip Has FLASH Size (kB) (Prog) + + flash-size-kb-prog + + + + Chip Has Data E2PROM (B) nom + + data-e2prom-b-nom + + + + Chip Has RAM Size (kB) + + ram-size-kb + + + + Chip Has Timers (16 bit) typ + + timers-16-bit-typ + + + + Chip Has Timers (32 bit) typ + + timers-32-bit-typ + + + + Chip Has Other timer functions + + other-timer-functions + + + + Chip Has Operating Temperature (oC) max + + operating-temperature-oc-max + + + + + STM32L011F3 + STM32L011F3 + Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU + Active + TSSOP 20,UFQFPN 20 3x3x0.6 + Arm Cortex-M0+ + 32 + - + - + 8 + 512 + 2 + 3 + - + 2xWDG,RTC,SysTick + 9 + - + - + 2 + 16 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 125,85 + + + + + STM32L031G4 + STM32L031G4 + Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU + Active + UFQFPN 28 4x4x0.55 + Arm Cortex-M0+ + 32 + - + - + 16 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 23 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 85 + + + + + STM32L031G6 + STM32L031G6 + Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU + Active + UFQFPN 28 4x4x0.55 + Arm Cortex-M0+ + 32 + - + - + 32 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 23 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 105 + + + + + STM32L051R8 + STM32L051R8 + Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M0+ + 32 + - + - + 64 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 16 + - + - + 2 + 51 + - + - + - + 2 + 2 + 1 + - + 2 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L072CZ + STM32L072CZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB + Active + EWLCSP 49L DIE 447 P 0.4 MM,LQFP 48 7x7x1.4,WLCSP 49L DIE 447 P 0.4 MM + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 13 + - + 2 + 2 + 40 + - + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,125,85 + + + + + STM32L072KZ + STM32L072KZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 25 + - + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L462VE + STM32L462VE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 kbytes Flash, USB Device, AES-256, DFSDM + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 80 + - + - + 512 + - + 160 + 7 + 1 + 2xWDG,RTC,SysTick + 16 + - + 1 + 2 + 83 + - + 1 + - + 4 + 3 + - + USB Device + 4 + 1 + - + 1 + SAI + DFSDM,FMC + AES + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L471ZE + STM32L471ZE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM + Active + LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM + Arm Cortex-M4 + 80 + - + - + 512 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 24 + - + 2 + 2 + 114 + - + 1 + - + 3 + 3 + - + - + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L476VE + STM32L476VE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 80 + - + - + 512 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 82 + LCD 4x44/8x40 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L4R5QG + STM32L4R5QG + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, CHROM-ART + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M4 + 120 + - + - + 1024 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 110 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L011D3 + STM32L011D3 + Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU + Active + TSSOP 14 + Arm Cortex-M0+ + 32 + - + - + 8 + 512 + 2 + 3 + - + 2xWDG,RTC,SysTick + 4 + - + - + 2 + 11 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.23 + 87 + -40 + 85 + + + + + STM32L011D4 + STM32L011D4 + Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU + Active + TSSOP 14 + Arm Cortex-M0+ + 32 + - + - + 16 + 512 + 2 + 3 + - + 2xWDG,RTC,SysTick + 4 + - + - + 2 + 11 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 105,85 + + + + + STM32L011E3 + STM32L011E3 + Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU + Active + WLCSP 25L DIE 457 P 0.4 + Arm Cortex-M0+ + 32 + - + - + 8 + 512 + 2 + 3 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 21 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 85 + + + + + STM32L011E4 + STM32L011E4 + Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU + Active + WLCSP 25L DIE 457 P 0.4 + Arm Cortex-M0+ + 32 + - + - + 16 + 512 + 2 + 3 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 21 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 85 + + + + + STM32L011F4 + STM32L011F4 + Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU + Active + TSSOP 20,UFQFPN 20 3x3x0.6 + Arm Cortex-M0+ + 32 + - + - + 16 + 512 + 2 + 3 + - + 2xWDG,RTC,SysTick + 9 + - + - + 2 + 16 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 125,85 + + + + + STM32L011G3 + STM32L011G3 + Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU + Active + UFQFPN 28 4x4x0.55 + Arm Cortex-M0+ + 32 + - + - + 8 + 512 + 2 + 3 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 24 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 85 + + + + + STM32L011G4 + STM32L011G4 + Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU + Active + UFQFPN 28 4x4x0.55 + Arm Cortex-M0+ + 32 + - + - + 16 + 512 + 2 + 3 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 24 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 105,85 + + + + + STM32L011K3 + STM32L011K3 + Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 8 + 512 + 2 + 3 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 28 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 85 + + + + + STM32L011K4 + STM32L011K4 + Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 16 + 512 + 2 + 3 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 28 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 105,125,85 + + + + + STM32L021D4 + STM32L021D4 + Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU, AES + Active + TSSOP 14 + Arm Cortex-M0+ + 32 + - + - + 16 + 512 + 2 + 3 + - + 2xWDG,RTC,SysTick + 4 + - + - + 2 + 11 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + AES + - + - + 1.65 + 3.6 + 0.23 + 87 + -40 + 105,85 + + + + + STM32L021F4 + STM32L021F4 + Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU, AES + Active + UFQFPN 20 3x3x0.6 + Arm Cortex-M0+ + 32 + - + - + 16 + 512 + 2 + 3 + - + 2xWDG,RTC,SysTick + 9 + - + - + 2 + 16 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + AES + - + - + 1.65 + 3.6 + 0.23 + 87 + -40 + 105,85 + + + + + STM32L021G4 + STM32L021G4 + Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU, AES + Active + UFQFPN 28 4x4x0.55 + Arm Cortex-M0+ + 32 + - + - + 16 + 512 + 2 + 3 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 24 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + AES + - + - + 1.65 + 3.6 + 0.23 + 87 + -40 + 105,85 + + + + + STM32L021K4 + STM32L021K4 + Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU, AES + Active + LQFP 32 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 16 + 512 + 2 + 3 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 28 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + AES + - + - + 1.65 + 3.6 + 0.23 + 87 + -40 + 105,85 + + + + + STM32L031C4 + STM32L031C4 + Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 16 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 38 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 85 + + + + + STM32L031C6 + STM32L031C6 + Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M0+ + 32 + - + - + 32 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 38 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 105,125,85 + + + + Chip Has A/D Converters (12-bit channels) + + ad-converters-12-bit-channels + + + + Chip Has A/D Converters (16-bit channels) + + ad-converters-16-bit-channels + + + + Chip Has D/A Converters (12 bit) typ + + da-converters--12-bit-typ + + + + Chip Has Comparator + + comparator + + + + Chip Has I/Os (High Current) + + ios-high-current + + + + Chip Has Display controller + + display-controller + + + + Chip Has CAN typ + + can--typ + + + + Chip Has CAN FD typ + + can-fd-typ + + + + Chip Has I2C typ + + i2c-typ + + + + Chip Has SPI typ + + spi-typ + + + + Chip Has I2S typ + + i2s-typ + + + + Chip Has USB Type + + usb-type + + + + Chip Has USART typ + + usart--typ + + + + Chip Has UART typ + + uart-typ + + + + Chip Has Connectivity supported + + connectivity-supported + + + + Chip Has Integrated op-amps + + integrated-op-amps + + + + Chip Has Additional Serial Interfaces + + additional-serial-interfaces + + + + Chip Has Parallel Interfaces + + parallel-interfaces + + + + Chip Has Crypto-HASH + + crypto-hash + + + + Chip Has TRNG typ + + trng-typ + + + + Chip Has SMPS + + smps + + + + Chip Has Supply Voltage (V) min + + supply-voltage-v-min + + + + Chip Has Supply Voltage (V) max + + supply-voltage-v-max + + + + Chip Has Supply Current (uA) (Lowest power mode) typ + + supply-current-ua-lowest-power-mode-typ + + + + Chip Has Supply Current (uA) (Run mode (per Mhz)) typ + + supply-current-ua-run-mode-per-mhz-typ + + + + Chip Has Operating Temperature (oC) min + + operating-temperature-oc-min + + + + + STM32L031E4 + STM32L031E4 + Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU + Active + WLCSP 25L DIE 425 + Arm Cortex-M0+ + 32 + - + - + 16 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 20 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 85 + + + + + STM32L031E6 + STM32L031E6 + Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU + Active + WLCSP 25L DIE 425 + Arm Cortex-M0+ + 32 + - + - + 32 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 20 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 85 + + + + + STM32L031F4 + STM32L031F4 + Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU + Active + TSSOP 20 + Arm Cortex-M0+ + 32 + - + - + 16 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 15 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 105,125,85 + + + + + STM32L031F6 + STM32L031F6 + Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU + Active + TSSOP 20 + Arm Cortex-M0+ + 32 + - + - + 32 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 15 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 105,85 + + + + + STM32L031K4 + STM32L031K4 + Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 16 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 27 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 85 + + + + + STM32L031K6 + STM32L031K6 + Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 32 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 27 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 105,125,85 + + + + + STM32L041C6 + STM32L041C6 + Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 32 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 38 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + AES + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 105,85 + + + + + STM32L041E6 + STM32L041E6 + Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES + Active + WLCSP 25L DIE 425 + Arm Cortex-M0+ + 32 + - + - + 32 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 20 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + AES + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 85 + + + + + STM32L041F6 + STM32L041F6 + Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES + Active + TSSOP 20 + Arm Cortex-M0+ + 32 + - + - + 32 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 15 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + AES + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 105 + + + + + STM32L041G6 + STM32L041G6 + Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES + Active + UFQFPN 28 4x4x0.55 + Arm Cortex-M0+ + 32 + - + - + 32 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 23 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + AES + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 105,85 + + + + + STM32L071K8 + STM32L071K8 + Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 64 + 3072 + 20 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 25 + - + - + - + 3 + 2 + 1 + - + 4 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 125,85 + + + + + STM32L071KB + STM32L071KB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 40 + - + - + - + 3 + 2 + 1 + - + 4 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 125,85 + + + + + STM32L071KZ + STM32L071KZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 25 + - + - + - + 2 + 2 + 1 + - + 4 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 125,85 + + + + + STM32L071RB + STM32L071RB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + - + 2 + 51 + - + - + - + 2 + 2 + 1 + - + 4 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L071RZ + STM32L071RZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + - + 2 + 51 + - + - + - + 2 + 2 + 1 + - + 4 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L071V8 + STM32L071V8 + Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU + Active + LQFP 100 14x14x1.4 + Arm Cortex-M0+ + 32 + - + - + 64 + 3072 + 20 + 5 + - + 2xWDG,RTC,SysTick + 16 + - + - + 2 + 84 + - + - + - + 3 + 2 + 1 + - + 4 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L071VB + STM32L071VB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU + Active + LQFP 100 14x14x1.4 + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + - + 2 + 84 + - + - + - + 2 + 2 + 1 + - + 4 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L071VZ + STM32L071VZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU + Active + LQFP 100 14x14x1.4 + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + - + 2 + 84 + - + - + - + 2 + 2 + 1 + - + 4 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L072CB + STM32L072CB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 48 7x7x1.4,WLCSP 49L DIE 447 P 0.4 MM + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 13 + - + 2 + 2 + 40 + - + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L072KB + STM32L072KB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 25 + - + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,125,85 + + + + + STM32L072RB + STM32L072RB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2,UFBGA 5X5X0.6 64L P 0.5 MM + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + - + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 125,85 + + + + + STM32L072RZ + STM32L072RZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2,UFBGA 5X5X0.6 64L P 0.5 MM + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + - + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L072V8 + STM32L072V8 + Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M0+ + 32 + - + - + 64 + 3072 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 84 + - + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L072VB + STM32L072VB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 100 14x14x1.4 + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 84 + - + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L072VZ + STM32L072VZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 84 + - + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L073CB + STM32L073CB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 13 + - + 2 + 2 + 40 + LCD 4x18 + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L073CZ + STM32L073CZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 13 + - + 2 + 2 + 40 + LCD 4x18 + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 125,85 + + + + + STM32L073RB + STM32L073RB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L073RZ + STM32L073RZ + Ultra-low-power ARM Cortex-M0+ MCU with 192 Kbytes Flash, 32 MHz CPU, USB, LCD + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2,UFBGA 5X5X0.6 64L P 0.5 MM + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 125,85 + + + + + STM32L073V8 + STM32L073V8 + Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU, USB, LCD + Active + LQFP 100 14x14x1.4 + Arm Cortex-M0+ + 32 + - + - + 64 + 3072 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 84 + LCD 4x52/8x48 + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L073VB + STM32L073VB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD + Active + LQFP 100 14x14x1.4 + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 84 + LCD 4x52/8x48 + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L073VZ + STM32L073VZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 84 + LCD 4x52/8x48 + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 125,85 + + + + + STM32L081CB + STM32L081CB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, AES + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 13 + - + - + 2 + 40 + - + - + - + 3 + 2 + 1 + - + 4 + 1 + - + - + - + - + AES + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L081CZ + STM32L081CZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, AES + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 13 + - + - + 2 + 40 + - + - + - + 2 + 2 + 1 + - + 4 + 1 + - + - + - + - + AES + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L081KZ + STM32L081KZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, AES + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 25 + - + - + - + 2 + 2 + 1 + - + 4 + 1 + - + - + - + - + AES + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L082CZ + STM32L082CZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, AES + Active + WLCSP 49L DIE 447 P 0.4 MM + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 13 + - + 2 + 2 + 40 + - + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + AES + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 125,85 + + + + + STM32L041K6 + STM32L041K6 + Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 32 + 1024 + 8 + 4 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 27 + - + - + - + 1 + 1 + - + - + 1 + 1 + - + - + - + - + AES + - + - + 1.65 + 3.6 + 0.25 + 87 + -40 + 105,85 + + + + + STM32L051C6 + STM32L051C6 + Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 32 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 37 + - + - + - + 2 + 2 + 1 + - + 2 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L051C8 + STM32L051C8 + Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 64 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 37 + - + - + - + 2 + 2 + 1 + - + 2 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,125,85 + + + + + STM32L051K6 + STM32L051K6 + Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 32 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 27 + - + - + - + 1 + 1 + - + - + 2 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L051K8 + STM32L051K8 + Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 64 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 27 + - + - + - + 1 + 1 + - + - + 2 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,125,85 + + + + + STM32L051R6 + STM32L051R6 + Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M0+ + 32 + - + - + 32 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 16 + - + - + 2 + 51 + - + - + - + 2 + 2 + 1 + - + 2 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L051T6 + STM32L051T6 + Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU + Active + WLCSP 36L DIE 417 P 0.4 MM + Arm Cortex-M0+ + 32 + - + - + 32 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 29 + - + - + - + 2 + 1 + - + - + 2 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L051T8 + STM32L051T8 + Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU + Active + WLCSP 36L DIE 417 P 0.4 MM + Arm Cortex-M0+ + 32 + - + - + 64 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + - + 2 + 29 + - + - + - + 2 + 2 + 1 + - + 2 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L052C6 + STM32L052C6 + Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 32 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + 1 + 2 + 37 + - + - + - + 2 + 2 + 1 + USB Device + 2 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L052C8 + STM32L052C8 + Ultra-low power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 64 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + 1 + 2 + 37 + - + - + - + 2 + 2 + 1 + USB Device + 2 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L052K6 + STM32L052K6 + Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 32 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + 1 + 2 + 27 + - + - + - + 1 + 1 + 1 + USB Device + 2 + - + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L052K8 + STM32L052K8 + Ultra-low power ARM Cortex-M0+ MCU with 64-Kbyte Flash, 32 MHz CPU, USB + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 64 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + 1 + 2 + 27 + - + - + - + 1 + 1 + 1 + USB Device + 2 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,125,85 + + + + + STM32L052R6 + STM32L052R6 + Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M0+ + 32 + - + - + 32 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 16 + - + 1 + 2 + 51 + - + - + - + 2 + 2 + 1 + USB Device + 2 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L052R8 + STM32L052R8 + Ultra-low power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M0+ + 32 + - + - + 64 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 16 + - + 1 + 2 + 51 + - + - + - + 2 + 2 + 1 + USB Device + 2 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L052T6 + STM32L052T6 + Ultra-low power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, USB + Active + WLCSP 36L DIE 417 P 0.4 MM + Arm Cortex-M0+ + 32 + - + - + 32 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + 1 + 2 + 29 + - + - + - + 2 + 1 + - + USB Device + 2 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L052T8 + STM32L052T8 + Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB + Active + THIN WLCSP 36L DIE 417 P 0.4 MM,WLCSP 36L DIE 417 P 0.4 MM + Arm Cortex-M0+ + 32 + - + - + 64 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + 1 + 2 + 29 + - + - + - + 2 + 1 + 1 + USB Device + 2 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L053C6 + STM32L053C6 + Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB, LCD + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 32 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + 1 + 2 + 37 + LCD 4x18 + - + - + 2 + 2 + 1 + USB Device + 2 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L053C8 + STM32L053C8 + Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB, LCD + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M0+ + 32 + - + - + 64 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + 1 + 2 + 37 + LCD 4x18 + - + - + 2 + 2 + 1 + USB Device + 2 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L053R6 + STM32L053R6 + Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB, LCD + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M0+ + 32 + - + - + 32 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 16 + - + 1 + 2 + 51 + LCD 4x31/8x28 + - + - + 2 + 2 + 1 + USB Device + 2 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L053R8 + STM32L053R8 + Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB, LCD + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M0+ + 32 + - + - + 64 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 16 + - + 1 + 2 + 51 + LCD 4x31/8x28 + - + - + 2 + 2 + 1 + USB Device + 2 + 1 + - + - + - + - + - + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,125,85 + + + + + STM32L062K8 + STM32L062K8 + Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB, AES + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 64 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + 1 + 2 + 27 + - + - + - + 1 + 1 + 1 + USB Device + 2 + - + - + - + - + - + AES + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L063C8 + STM32L063C8 + Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB, LCD, AES + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 64 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 10 + - + 1 + 2 + 37 + LCD 4x18 + - + - + 2 + 2 + 1 + USB Device + 2 + 1 + - + - + - + - + AES + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L063R8 + STM32L063R8 + Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz, USB, LCD, AES + Active + LQFP 64 10x10x1.4 + Arm Cortex-M0+ + 32 + - + - + 64 + 2048 + 8 + 5 + - + 2xWDG,RTC,SysTick + 16 + - + 1 + 2 + 51 + LCD 4x31/8x28 + - + - + 2 + 2 + 1 + USB Device + 2 + 1 + - + - + - + - + AES + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L071C8 + STM32L071C8 + Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 64 + 3072 + 20 + 5 + - + 2xWDG,RTC,SysTick + 13 + - + - + 2 + 37 + - + - + - + 3 + 2 + 1 + - + 4 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L071CB + STM32L071CB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU + Active + LQFP 48 7x7x1.4,WLCSP 49L DIE 447 P 0.4 MM + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 13 + - + - + 2 + 40 + - + - + - + 2 + 2 + 1 + - + 4 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,125,85 + + + + + STM32L071CZ + STM32L071CZ + Ultra-low-power ARM Cortex-M0+ MCU with 192 Kbytes Flash, 32 MHz CPu + Active + LQFP 48 7x7x1.4,WLCSP 49L DIE 447 P 0.4 MM + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 13 + - + - + 2 + 40 + - + - + - + 2 + 2 + 1 + - + 4 + 1 + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 105,85 + + + + + STM32L082KB + STM32L082KB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, AES + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 25 + - + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + AES + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L082KZ + STM32L082KZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, AES + Active + LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55 + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 25 + - + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + AES + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L083CB + STM32L083CB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD, AES + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 40 + LCD 4x18 + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + AES + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L083CZ + STM32L083CZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD, AES + Active + LQFP 48 7x7x1.4 + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 40 + LCD 4x18 + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + AES + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L083RB + STM32L083RB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD, AES + Active + TFBGA 64 5x5x1.2 + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + AES + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L083RZ + STM32L083RZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD, AES + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + AES + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L083V8 + STM32L083V8 + Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU, USB, LCD, AES + Active + LQFP 100 14x14x1.4 + Arm Cortex-M0+ + 32 + - + - + 64 + 3072 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 84 + LCD 4x52/8x48 + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + AES + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L083VB + STM32L083VB + Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD, AES + Active + LQFP 100 14x14x1.4 + Arm Cortex-M0+ + 32 + - + - + 128 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 84 + LCD 4x52/8x48 + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + AES + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L083VZ + STM32L083VZ + Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD, AES + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M0+ + 32 + - + - + 192 + 6144 + 20 + 7 + - + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 84 + LCD 4x52/8x48 + - + - + 3 + 2 + 1 + USB Device + 4 + 1 + - + - + - + - + AES + true + - + 1.65 + 3.6 + 0.29 + 87 + -40 + 85 + + + + + STM32L100C6-A + STM32L100C6-A + Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 32 + 2048 + 4 + 6 + - + 2 x WDG,24-bit down counter,RTC + 14 + - + 2 + 2 + 37 + LCD 4x16 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.8 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151ZD + STM32L151ZD + Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 32 + - + - + 384 + 12288 + 48 + 8 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 2 + 115 + - + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 3 + - + FMC,SDIO + - + - + - + 1.65 + 3.6 + 0.3 + 230 + -40 + 85 + + + + + STM32L151ZE + STM32L151ZE + Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 32 + - + - + 512 + 16384 + 80 + 8 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 2 + 115 + - + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 195 + -40 + 85 + + + + + STM32L152C6-A + STM32L152C6-A + Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 32 + 4096 + 16 + 6 + - + 2 x WDG,RTC,SysTick + 14 + - + 2 + 2 + 37 + LCD 4x16 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152C8-A + STM32L152C8-A + Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 64 + 4096 + 32 + 6 + - + 2 x WDG,RTC,SysTick + 14 + - + 2 + 2 + 36 + LCD 4x16 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152CB-A + STM32L152CB-A + Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 128 + 4096 + 32 + 6 + - + 2 x WDG,RTC,SysTick + 14 + - + 2 + 2 + 37 + LCD 4x16 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152CC + STM32L152CC + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 6 + 1 + 2xWDG,RTC,SysTick + 14 + - + 2 + 2 + 37 + LCD 4x18 + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152QC + STM32L152QC + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 2 + 109 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152QD + STM32L152QD + Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M3 + 32 + - + - + 384 + 12288 + 48 + 8 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 2 + 109 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 3 + - + FMC,SDIO + - + - + - + 1.65 + 3.6 + 0.3 + 230 + -40 + 85 + + + + + STM32L152QE + STM32L152QE + Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M3 + 32 + - + - + 512 + 16384 + 80 + 8 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 2 + 109 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 195 + -40 + 85 + + + + + STM32L152R6-A + STM32L152R6-A + Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 32 + - + - + 32 + 4096 + 16 + 6 + - + 2xWDG,RTC,SysTick + 20 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152R8-A + STM32L152R8-A + Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 32 + - + - + 64 + 4096 + 32 + 6 + - + 2 x WDG,RTC,SysTick + 20 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152RB-A + STM32L152RB-A + Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 32 + - + - + 128 + 4096 + 32 + 6 + - + 2xWDG,RTC,SysTick + 20 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152RC + STM32L152RC + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 21 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152RD + STM32L152RD + Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp + Active + LQFP 64 10x10x1.4,WLCSP 64 BALLS DIE 436 P 0.4 MM + Arm Cortex-M3 + 32 + - + - + 384 + 12288 + 48 + 8 + 1 + 2xWDG,RTC,SysTick + 21 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 3 + - + SDIO + - + - + - + 1.65 + 3.6 + 0.3 + 230 + -40 + 85 + + + + + STM32L152RE + STM32L152RE + Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 32 + - + - + 512 + 16384 + 80 + 8 + 1 + 2xWDG,RTC,SysTick + 21 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 195 + -40 + 85 + + + + + STM32L152UC + STM32L152UC + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp + Active + WLCSP 63L (7X9) DIE 427 P 0.4 MM + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 21 + - + 2 + - + 51 + LCD 4x32/8x28 + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 177 + -40 + 85 + + + + + STM32L152V8-A + STM32L152V8-A + Ultra-low-power Cortex-M3 MCU with 64 Kbytes Flash, RTC, LCD, USB + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M3 + 32 + - + - + 64 + 4096 + 32 + 6 + - + 2 x WDG,RTC,SysTick + 24 + - + 2 + 2 + 82 + LCD 4x44/8x40 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152VB-A + STM32L152VB-A + Ultra-low-power Cortex-M3 MCU with 128 Kbytes Flash, RTC, LCD, USB + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M3 + 32 + - + - + 128 + 4096 + 32 + 6 + - + 2 x WDG,RTC,SysTick + 24 + - + 2 + 2 + 83 + LCD 4x44/8x40 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152VC + STM32L152VC + Ultra-low-power Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2 x WDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152VD + STM32L152VD + Ultra-low-power Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 32 + - + - + 384 + 12288 + 48 + 8 + 1 + 2xWDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 3 + - + FMC,SDIO + - + - + - + 1.65 + 3.6 + 0.3 + 230 + -40 + 85 + + + + + STM32L152VD-X + STM32L152VD-X + Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 32 + - + - + 384 + 16384 + 80 + 8 + 1 + 2xWDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 2 + - + FMC,SDIO + - + - + - + 1.65 + 3.6 + 0.3 + 195 + -40 + 85 + + + + + STM32L152VE + STM32L152VE + Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp + Active + LQFP 100 14x14x1.4,WLCSP 104L DIE 437 P 0.4MM + Arm Cortex-M3 + 32 + - + - + 512 + 16384 + 80 + 8 + 1 + 2xWDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 195 + -40 + 85 + + + + + STM32L152ZC + STM32L152ZC + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2 x WDG,RTC,SysTick + 40 + - + 2 + 2 + 115 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152ZD + STM32L152ZD + Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 32 + - + - + 384 + 12288 + 48 + 8 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 2 + 115 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 3 + - + FMC,SDIO + - + - + - + 1.65 + 3.6 + 0.3 + 230 + -40 + 85 + + + + + STM32L152ZE + STM32L152ZE + Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 32 + - + - + 512 + 16384 + 80 + 8 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 2 + 115 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 195 + -40 + 85 + + + + + STM32L162QD + STM32L162QD + Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp, AES + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M3 + 32 + - + - + 384 + 12288 + 48 + 8 + 1 + 2 x WDG,RTC,SysTick + 40 + - + 2 + 2 + 109 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 3 + - + FSMC,SDIO + AES + - + - + 1.65 + 3.6 + 0.3 + 230 + -40 + 85 + + + + + STM32L100R8-A + STM32L100R8-A + Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 32 + - + - + 64 + 2048 + 8 + 6 + - + 2 x WDG,24-bit down counter,RTC + 20 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.8 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L100RB-A + STM32L100RB-A + Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 32 + - + - + 128 + 2048 + 16 + 6 + - + 2 x WDG,24-bit down counter,RTC + 20 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.8 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L100RC + STM32L100RC + Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 32 + - + - + 256 + 4096 + 16 + 6 + - + 2 x WDG,24-bit down counter,RTC + 20 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 3 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.8 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151C6-A + STM32L151C6-A + Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 32 + 4096 + 16 + 6 + - + 2 x WDG,RTC,SysTick + 14 + - + 2 + 2 + 37 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151C8-A + STM32L151C8-A + Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 64 + 4096 + 32 + 6 + - + 2 x WDG,RTC,SysTick + 14 + - + 2 + 2 + 37 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151CB + STM32L151CB + Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 128 + 4096 + 16 + 6 + - + 2 x WDG,RTC,SysTick + 14 + - + 2 + 2 + 37 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151CB-A + STM32L151CB-A + Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 128 + 4096 + 32 + 6 + - + 2 x WDG,RTC,SysTick + 14 + - + 2 + 2 + 37 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151CC + STM32L151CC + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 14 + - + 2 + 2 + 37 + - + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 105,85 + + + + + STM32L151QC + STM32L151QC + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 2 + 109 + - + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151QD + STM32L151QD + Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M3 + 32 + - + - + 384 + 12288 + 48 + 8 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 2 + 109 + - + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 3 + - + FMC,SDIO + - + - + - + 1.65 + 3.6 + 0.3 + 230 + -40 + 85 + + + + + STM32L151QE + STM32L151QE + Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M3 + 32 + - + - + 512 + 16384 + 80 + 8 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 2 + 109 + - + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 195 + -40 + 85 + + + + + STM32L151R6-A + STM32L151R6-A + Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 32 + - + - + 32 + 4096 + 16 + 6 + - + 2 x WDG,RTC,SysTick + 20 + - + 2 + 2 + 51 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151R8-A + STM32L151R8-A + Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 32 + - + - + 64 + 4096 + 32 + 6 + - + 2 x WDG,RTC,SysTick + 20 + - + 2 + 2 + 51 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151RB + STM32L151RB + Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 32 + - + - + 128 + 4096 + 16 + 6 + - + 2 x WDG,RTC,SysTick + 20 + - + 2 + 2 + 51 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151RB-A + STM32L151RB-A + Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 32 + - + - + 128 + 4096 + 32 + 6 + - + 2 x WDG,RTC,SysTick + 20 + - + 2 + 2 + 51 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 105,85 + + + + + STM32L151RC + STM32L151RC + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp + Active + LQFP 64 10x10x1.4,WLCSP 64 BALLS DIE 436 P 0.4 MM + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 21 + - + 2 + 2 + 51 + - + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151RD + STM32L151RD + Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp + Active + LQFP 64 10x10x1.4,WLCSP 64 BALLS DIE 436 P 0.4 MM + Arm Cortex-M3 + 32 + - + - + 384 + 12288 + 48 + 8 + 1 + 2 x WDG,RTC,SysTick + 21 + - + 2 + 2 + 51 + - + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 3 + - + FMC,SDIO + - + - + - + 1.65 + 3.6 + 0.3 + 230 + -40 + 105,85 + + + + + STM32L151RE + STM32L151RE + Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 32 + - + - + 512 + 16384 + 80 + 8 + 1 + 2xWDG,RTC,SysTick + 21 + - + 2 + 2 + 51 + - + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 195 + -40 + 85 + + + + + STM32L151UC + STM32L151UC + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp + Active + WLCSP 63L (7X9) DIE 427 P 0.4 MM + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 21 + - + 2 + 2 + 51 + - + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 105,85 + + + + + STM32L151V8-A + STM32L151V8-A + Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M3 + 32 + - + - + 64 + 4096 + 32 + 6 + - + 2 x WDG,RTC,SysTick + 24 + - + 2 + 2 + 83 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151VB-A + STM32L151VB-A + Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M3 + 32 + - + - + 128 + 4096 + 32 + 6 + - + 2 x WDG,RTC,SysTick + 24 + - + 2 + 2 + 83 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151VC + STM32L151VC + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + - + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151VD + STM32L151VD + Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 32 + - + - + 384 + 12288 + 48 + 8 + 1 + 2 x WDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + - + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 3 + - + FMC,SDIO + - + - + - + 1.65 + 3.6 + 0.3 + 230 + -40 + 85 + + + + + STM32L151VD-X + STM32L151VD-X + Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp + Active + LQFP 100 14x14x1.4,WLCSP 104L DIE 437 P 0.4MM + Arm Cortex-M3 + 32 + - + - + 384 + 16384 + 80 + 8 + 1 + 2xWDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + - + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 2 + - + FMC,SDIO + - + - + - + 1.65 + 3.6 + 0.3 + 195 + -40 + 105,85 + + + + + STM32L151VE + STM32L151VE + Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, MCD, USB, 2xOp-amp + Active + LQFP 100 14x14x1.4,WLCSP 104L DIE 437 P 0.4MM + Arm Cortex-M3 + 32 + - + - + 512 + 16384 + 80 + 8 + 1 + 2xWDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + - + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 195 + -40 + 105,85 + + + + + STM32L151ZC + STM32L151ZC + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 2 + 115 + - + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L162RC + STM32L162RC + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 21 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + AES + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L162RD + STM32L162RD + Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp, AES + Active + LQFP 64 10x10x1.4,WLCSP 64 BALLS DIE 436 P 0.4 MM + Arm Cortex-M3 + 32 + - + - + 384 + 12288 + 48 + 8 + 1 + 2xWDG,RTC,SysTick + 21 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 3 + - + SDIO + AES + - + - + 1.65 + 3.6 + 0.3 + 230 + -40 + 85 + + + + + STM32L162RE + STM32L162RE + Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES + Active + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 32 + - + - + 512 + 16384 + 80 + 8 + 1 + 2xWDG,RTC,SysTick + 21 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 2 + - + - + AES + - + - + 1.65 + 3.6 + 0.3 + 195 + -40 + 85 + + + + + STM32L162VC + STM32L162VC + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + AES + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L162VD + STM32L162VD + Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp, AES + Active + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 32 + - + - + 384 + 12288 + 48 + 8 + 1 + 2 x WDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 3 + - + FMC,SDIO + AES + - + - + 1.65 + 3.6 + 0.3 + 230 + -40 + 85 + + + + + STM32L162VD-X + STM32L162VD-X + Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES + Active + WLCSP 104L DIE 437 P 0.4MM + Arm Cortex-M3 + 32 + - + - + 384 + 16384 + 80 + 8 + 1 + 2xWDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 2 + - + FMC,SDIO + AES + - + - + 1.65 + 3.6 + 0.3 + 195 + -40 + 85 + + + + + STM32L162VE + STM32L162VE + Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES + Active + LQFP 100 14x14x1.4,WLCSP 104L DIE 437 P 0.4MM + Arm Cortex-M3 + 32 + - + - + 512 + 16384 + 80 + 8 + 1 + 2xWDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 2 + - + - + AES + - + - + 1.65 + 3.6 + 0.3 + 195 + -40 + 85 + + + + + STM32L162ZD + STM32L162ZD + Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp, AES + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 32 + - + - + 384 + 12288 + 48 + 8 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 2 + 115 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 3 + - + FMC,SDIO + AES + - + - + 1.65 + 3.6 + 0.3 + 230 + -40 + 85 + + + + + STM32L162ZE + STM32L162ZE + Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES + Active + LQFP 144 20x20x1.4 + Arm Cortex-M3 + 32 + - + - + 512 + 16384 + 80 + 8 + 1 + 2xWDG,RTC,SysTick + 40 + - + 2 + 2 + 115 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 5 + - + - + 2 + - + - + AES + - + - + 1.65 + 3.6 + 0.3 + 195 + -40 + 85 + + + + + STM32L431CB + STM32L431CB + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM + Arm Cortex-M4 + 80 + - + - + 128 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 38 + - + 1 + - + 3 + 3 + - + - + 3 + 1 + - + 1 + SAI + Quad SPI + - + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 105,85 + + + + + STM32L452RE + STM32L452RE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB Device, DFSDM + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64,WLCSP 64L DIE 462 PITCH 0.4 + Arm Cortex-M4 + 80 + - + - + 512 + - + 160 + 8 + 1 + 2xWDG,RTC,SysTick + 16 + - + 1 + 2 + 52 + LCD 4x44/8x40 + 1 + - + 4 + 3 + - + USB Device + 4 + 1 + - + 1 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + - + External + 1.71 + 3.6 + 0.01 + 80 + -40 + 125,85 + + + + + STM32L452VC + STM32L452VC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB Device, DFSDM + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 80 + - + - + 256 + - + 160 + 8 + 1 + 2xWDG,RTC,SysTick + 16 + - + 1 + 2 + 83 + - + 1 + - + 4 + 3 + - + USB Device + 4 + 1 + - + 1 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L452VE + STM32L452VE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB Device, DFSDM + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 80 + - + - + 512 + - + 160 + 8 + 1 + 2xWDG,RTC,SysTick + 16 + - + 1 + 2 + 83 + LCD 4x44/8x40 + 1 + - + 4 + 3 + - + USB Device + 4 + 1 + - + 1 + SAI + FMC,Quad SPI,SDIO + - + - + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 125,85 + + + + + STM32L462CE + STM32L462CE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 kbytes Flash, USB Device, AES-256, DFSDM + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M4 + 80 + - + - + 512 + - + 160 + 7 + 1 + 2xWDG,RTC,SysTick + 10 + - + 1 + - + 38 + - + - + - + - + - + - + USB Device + 5 + 1 + - + 1 + SAI + DFSDM,FMC,Quad SPI + AES + - + - + - + - + 0.03 + 80 + -40 + 125,85 + + + + + STM32L462RE + STM32L462RE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 kbytes Flash, USB Device, AES-256, DFSDM + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 462 PITCH 0.4 + Arm Cortex-M4 + 80 + - + - + 512 + - + 160 + 7 + 1 + 2xWDG,RTC,SysTick + 16 + - + 1 + - + 52 + - + - + - + - + - + - + USB Device + 4 + 1 + - + 1 + SAI + DFSDM,FMC,Quad SPI,SDIO + AES + - + - + 1.71 + - + 0.01 + 100 + -40 + 85 + + + + + STM32L471QE + STM32L471QE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M4 + 80 + - + - + 512 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 19 + - + 2 + 2 + 109 + - + 1 + - + 3 + 3 + - + - + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 105,85 + + + + + STM32L471QG + STM32L471QG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, DFSDM + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 19 + - + 2 + 2 + 109 + - + 1 + - + 3 + 3 + - + - + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L471RE + STM32L471RE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 80 + - + - + 512 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + - + 1 + - + 3 + 3 + - + - + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L471RG + STM32L471RG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, DFSDM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + - + 1 + - + 3 + 3 + - + - + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L471VE + STM32L471VE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 80 + - + - + 512 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 82 + - + 1 + - + 3 + 3 + - + - + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L471VG + STM32L471VG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, DFSDM + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 82 + - + 1 + - + 3 + 3 + - + - + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 125,85 + + + + + STM32L471ZG + STM32L471ZG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, DFSDM + Active + LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 24 + - + 2 + 2 + 114 + - + 1 + - + 3 + 3 + - + - + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L475RC + STM32L475RC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB OTG, DFSDM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 80 + - + - + 256 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + - + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 105,125,85 + + + + + STM32L475RE + STM32L475RE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, DFSDM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 80 + - + - + 512 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + - + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L475RG + STM32L475RG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, DFSDM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + - + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 105,85 + + + + + STM32L475VC + STM32L475VC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB OTG, DFSDM + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 80 + - + - + 256 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 82 + - + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L475VE + STM32L475VE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, DFSDM + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 80 + - + - + 512 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 82 + - + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L475VG + STM32L475VG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, DFSDM + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 82 + - + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L476JE + STM32L476JE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM + Active + WLCSP 72L DIE 415 PITCH 0.4 MM + Arm Cortex-M4 + 80 + - + - + 512 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 57 + LCD 4x32/8x28 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L476JG + STM32L476JG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM + Active + WLCSP 72L DIE 415 PITCH 0.4 MM + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 57 + LCD 4x32/8x28 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + External + 1.71 + 3.6 + 0.03 + 100 + -40 + 105,125,85 + + + + + STM32L476ME + STM32L476ME + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM + Active + WLCSP 81L DIE 415 P 0.4 MM + Arm Cortex-M4 + 80 + - + - + 512 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 65 + LCD 4x32/8x30 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L476MG + STM32L476MG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM + Active + WLCSP 81L DIE 415 P 0.4 MM + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 65 + LCD 4x32/8x30 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L476QE + STM32L476QE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M4 + 80 + - + - + 512 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 19 + - + 2 + 2 + 109 + LCD 4x44/8x40 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L476QG + STM32L476QG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 19 + - + 2 + 2 + 109 + LCD 4x44/8x40 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + External + 1.71 + 3.6 + 0.03 + 100 + -40 + 125,85 + + + + + STM32L476RC + STM32L476RC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB OTG, DFSDM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 80 + - + - + 256 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + LCD 4x32/8x28 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L476RE + STM32L476RE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 80 + - + - + 512 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + LCD 4x32/8x28 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L431CC + STM32L431CC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM + Arm Cortex-M4 + 80 + - + - + 256 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 38 + - + 1 + - + 3 + 3 + - + - + 3 + 1 + - + 1 + SAI + Quad SPI + - + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L431KB + STM32L431KB + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M4 + 80 + - + - + 128 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 26 + - + 1 + - + 2 + 2 + - + - + 2 + 1 + - + 1 + SAI + Quad SPI + - + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L431KC + STM32L431KC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M4 + 80 + - + - + 256 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 26 + - + 1 + - + 2 + 2 + - + - + 2 + 1 + - + 1 + SAI + Quad SPI + - + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L431RB + STM32L431RB + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM + Arm Cortex-M4 + 80 + - + - + 128 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 52 + - + 1 + - + 3 + 3 + - + - + 3 + 1 + - + 1 + SAI + Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 125,85 + + + + + STM32L431RC + STM32L431RC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM + Arm Cortex-M4 + 80 + - + - + 256 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 52 + - + 1 + - + 3 + 3 + - + - + 3 + 1 + - + 1 + SAI + Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L431VC + STM32L431VC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 80 + - + - + 256 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 83 + - + 1 + - + 3 + 3 + - + - + 3 + 1 + - + 1 + SAI + Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.01 + - + -40 + 85 + + + + + STM32L432KB + STM32L432KB + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash, USB + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M4 + 80 + - + - + 128 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 26 + - + 1 + - + 2 + 2 + - + USB Device + 2 + 1 + - + 1 + SAI + Quad SPI + - + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L432KC + STM32L432KC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M4 + 80 + - + - + 256 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 26 + - + 1 + - + 2 + 2 + - + USB Device + 2 + 1 + - + 1 + SAI + Quad SPI + - + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L433CB + STM32L433CB + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash, USB FS, LCD + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM + Arm Cortex-M4 + 80 + - + - + 128 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 38 + LCD 4x19 + 1 + - + 3 + 3 + - + USB Device + 3 + 1 + - + 1 + SAI + Quad SPI + - + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 105,85 + + + + + STM32L433CC + STM32L433CC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB + Active + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM + Arm Cortex-M4 + 80 + - + - + 256 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 38 + LCD 4x19 + 1 + - + 3 + 3 + - + USB Device + 3 + 1 + - + 1 + SAI + Quad SPI + - + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 125,85 + + + + + STM32L433RB + STM32L433RB + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash, USB FS, LCD + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM + Arm Cortex-M4 + 80 + - + - + 128 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 52 + LCD 4x32/8x28 + 1 + - + 3 + 3 + - + USB Device + 3 + 1 + - + 1 + SAI + Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L433RC + STM32L433RC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM + Arm Cortex-M4 + 80 + - + - + 256 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 52 + LCD 4x32/8x28 + 1 + - + 3 + 3 + - + USB Device + 3 + - + - + 1 + SAI + Quad SPI,SDIO + - + true + External + 1.71 + 3.6 + 0.01 + 80 + -40 + 125,85 + + + + + STM32L433VC + STM32L433VC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 80 + - + - + 256 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 83 + LCD 4x44/8x40 + 1 + - + 3 + 3 + - + USB Device + 3 + 1 + - + 1 + SAI + Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 125,85 + + + + + STM32L442KC + STM32L442KC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB, AES-256, DFSDM + Active + UFQFPN 32 5x5x0.55 + Arm Cortex-M4 + 80 + - + - + 256 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 26 + - + 1 + - + 2 + 2 + - + USB Device + 2 + 1 + - + 1 + SAI + Quad SPI + AES + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L443CC + STM32L443CC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB, AES-256 + Active + LQFP 48 7x7x1.4,THIN WLCSP 49L 435 PITCH 0.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM + Arm Cortex-M4 + 80 + - + - + 256 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 10 + - + 2 + 2 + 38 + LCD 4x19 + 1 + - + 3 + 3 + - + USB Device + 3 + 1 + - + 1 + SAI + Quad SPI + AES + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L443RC + STM32L443RC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB, AES-256 + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM + Arm Cortex-M4 + 80 + - + - + 256 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 52 + LCD 4x32/8x28 + 1 + - + 3 + 3 + - + USB Device + 3 + 1 + - + 1 + SAI + Quad SPI,SDIO + AES + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 125,85 + + + + + STM32L443VC + STM32L443VC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB, AES-256, DFSDM + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 80 + - + - + 256 + - + 64 + 7 + 1 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 83 + LCD 4x44/8x40 + 1 + - + 3 + 3 + - + USB Device + 3 + 1 + - + 1 + SAI + Quad SPI,SDIO + AES + true + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L451CC + STM32L451CC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, DFSDM + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M4 + 80 + - + - + 256 + - + 160 + 8 + 1 + 2xWDG,RTC,SysTick + 10 + - + 1 + 2 + 38 + - + 1 + - + 4 + 3 + - + - + 4 + 1 + - + 1 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 125,85 + + + + + STM32L451CE + STM32L451CE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M4 + 80 + - + - + 512 + - + 160 + 8 + 1 + 2xWDG,RTC,SysTick + 10 + - + 1 + 2 + 38 + - + 1 + - + 4 + 3 + - + - + 4 + 1 + - + 1 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L451RC + STM32L451RC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, DFSDM + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM + Arm Cortex-M4 + 80 + - + - + 256 + - + - + 8 + 1 + 2xWDG,RTC,SysTick + 16 + - + 1 + 2 + 52 + - + 1 + - + 4 + 3 + - + - + 4 + 1 + - + 1 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L451RE + STM32L451RE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 462 PITCH 0.4 + Arm Cortex-M4 + 80 + - + - + 512 + - + 160 + 8 + 1 + 2xWDG,RTC,SysTick + 16 + - + 1 + 2 + 52 + - + 1 + - + 4 + 3 + - + - + 4 + 1 + - + 1 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L451VC + STM32L451VC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, DFSDM + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 80 + - + - + 256 + - + 160 + 8 + 1 + 2xWDG,RTC,SysTick + 16 + - + 1 + 2 + 83 + - + 1 + - + 4 + 3 + - + - + 4 + 1 + - + 1 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L451VE + STM32L451VE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM + Active + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M4 + 80 + - + - + 512 + - + 160 + 8 + 1 + 2xWDG,RTC,SysTick + 16 + - + 1 + 2 + 83 + - + 1 + - + 4 + 3 + - + - + 4 + 1 + - + 1 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L452CC + STM32L452CC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB Device, DFSDM + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M4 + 80 + - + - + 256 + - + 160 + 8 + 1 + 2xWDG,RTC,SysTick + 10 + - + 1 + 2 + 38 + - + 1 + - + 4 + 3 + - + USB Device + 4 + 1 + - + 1 + SAI + DFSDM,FMC,Quad SPI + - + - + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L452CE + STM32L452CE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB Device, DFSDM + Active + UFQFPN 48 7x7x0.55 + Arm Cortex-M4 + 80 + - + - + 512 + - + 160 + 8 + 1 + 2xWDG,RTC,SysTick + 10 + - + 1 + 2 + 38 + LCD 4x44/8x40 + 1 + - + 4 + 3 + - + USB Device + 4 + 1 + - + 1 + SAI + DFSDM,FMC,Quad SPI + - + - + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 125,85 + + + + + STM32L452RC + STM32L452RC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB Device, DFSDM + Active + LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM + Arm Cortex-M4 + 80 + - + - + 256 + - + 160 + 8 + 1 + 2xWDG,RTC,SysTick + 16 + - + 1 + 2 + 52 + - + 1 + - + 4 + 3 + - + USB Device + 4 + 1 + - + 1 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.71 + 3.6 + 0.01 + 80 + -40 + 85 + + + + + STM32L476RG + STM32L476RG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + LCD 4x32/8x28 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 125,85 + + + + + STM32L476VC + STM32L476VC + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB OTG, DFSDM + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 80 + - + - + 256 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 82 + LCD 4x44/8x40 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L476VG + STM32L476VG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 82 + LCD 4x44/8x40 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 105,85 + + + + + STM32L476ZE + STM32L476ZE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 80 + - + - + 512 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 24 + - + 2 + 2 + 114 + LCD 4x44/8x40 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L476ZG + STM32L476ZG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM + Active + LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 24 + - + 2 + 2 + 114 + LCD 4x44/8x40 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + FSMC,DFSDM,Quad SPI,SDIO + - + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 125,85 + + + + + STM32L486JG + STM32L486JG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM + Active + WLCSP 72L DIE 415 PITCH 0.4 MM + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 57 + LCD 4x32/8x28 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + AES + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L486QG + STM32L486QG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 19 + - + 2 + 2 + 109 + LCD 4x44/8x40 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + AES + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L486RG + STM32L486RG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 51 + LCD 4x32/8x28 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + AES + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L486VG + STM32L486VG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 82 + LCD 4x44/8x40 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + AES + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 85 + + + + + STM32L486ZG + STM32L486ZG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 128 + 11 + 2 + 2xWDG,RTC,SysTick + 24 + - + 2 + 2 + 114 + LCD 4x44/8x40 + 1 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + DFSDM,FMC,Quad SPI,SDIO + AES + true + - + 1.71 + 3.6 + 0.03 + 100 + -40 + 125,85 + + + + + STM32L4R9AI + STM32L4R9AI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 14 + - + 2 + 2 + 131 + MIPI DSI + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + Camera IF,DFSDM,FMC,SD/MMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4R9VG + STM32L4R9VG + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 120 + - + - + 1024 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 14 + - + 2 + 2 + 77 + MIPI DSI + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4R9VI + STM32L4R9VI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 14 + - + 2 + 2 + 77 + MIPI DSI + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4R9ZG + STM32L4R9ZG + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI + Active + LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,WLCSP 144L DIE 470 PITCH 0.4 + Arm Cortex-M4 + 120 + - + - + 1024 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 112 + MIPI DSI + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4R9ZI + STM32L4R9ZI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI + Active + LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,WLCSP 144L DIE 470 PITCH 0.4 + Arm Cortex-M4 + 120 + - + - + 1024 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 112 + MIPI DSI + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4S5AI + STM32L4S5AI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART, AES-256, HASH + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 140 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + AES + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4S5QI + STM32L4S5QI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART, AES-256, HASH + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 110 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + AES + true + External + 1.71 + 3.6 + 0.02 + 112 + -40 + 125,85 + + + + + STM32L4S5VI + STM32L4S5VI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART, AES-256, HASH + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 83 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4S5ZI + STM32L4S5ZI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART, AES-256, HASH + Active + LQFP 144 20x20x1.4,WLCSP 144L DIE 470 PITCH 0.4 + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 115 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4S7AI + STM32L4S7AI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, AES-256, HASH + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 140 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4S7VI + STM32L4S7VI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, AES-256, HASH + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 83 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4S7ZI + STM32L4S7ZI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, AES-256, HASH + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 115 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4S9AI + STM32L4S9AI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI, AES-256, HASH + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 14 + - + 2 + 2 + 131 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + Camera IF,DFSDM,FMC,SD/MMC + AES + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4S9VI + STM32L4S9VI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI, AES-256, HASH + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 14 + - + 2 + 2 + 77 + MIPI DSI + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4S9ZI + STM32L4S9ZI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI, AES-256, HASH + Active + LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,WLCSP 144L DIE 470 PITCH 0.4 + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 112 + MIPI DSI + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L100C6 + STM32L100C6 + Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB + NRND + UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 32 + 2048 + 4 + 6 + - + 2 x WDG,24-bit down counter,RTC + 14 + - + 2 + 2 + 37 + LCD 4x18 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.8 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L100R8 + STM32L100R8 + Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB + NRND + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 32 + - + - + 64 + 2048 + 8 + 6 + - + 2 x WDG,24-bit down counter,RTC + 20 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.8 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L100RB + STM32L100RB + Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB + NRND + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 32 + - + - + 128 + 2048 + 10 + 6 + - + 2 x WDG,24-bit down counter,RTC + 20 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.8 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151C6 + STM32L151C6 + Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, USB + NRND + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 32 + 4096 + 10 + 6 + - + 2 x WDG,RTC,SysTick + 14 + - + 2 + 2 + 37 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151C8 + STM32L151C8 + Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB + NRND + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 64 + 4096 + 10 + 6 + - + 2 x WDG,RTC,SysTick + 14 + - + 2 + 2 + 37 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151R6 + STM32L151R6 + Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, USB + NRND + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 32 + - + - + 32 + 4096 + 10 + 6 + - + 2 x WDG,RTC,SysTick + 20 + - + 2 + 2 + 51 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151R8 + STM32L151R8 + Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB + NRND + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 32 + - + - + 64 + 4096 + 10 + 6 + - + 2 x WDG,RTC,SysTick + 20 + - + 2 + 2 + 51 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151RC-A + STM32L151RC-A + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp + NRND + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 21 + - + 2 + 2 + 51 + - + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151V8 + STM32L151V8 + Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB + NRND + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M3 + 32 + - + - + 64 + 4096 + 10 + 6 + - + 2 x WDG,RTC,SysTick + 24 + - + 2 + 2 + 83 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151VB + STM32L151VB + Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB + NRND + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M3 + 32 + - + - + 128 + 4096 + 16 + 6 + - + 2 x WDG,RTC,SysTick + 24 + - + 2 + 2 + 83 + - + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L151VC-A + STM32L151VC-A + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp + NRND + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2 x WDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + - + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L496AE + STM32L496AE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 80 + - + - + 512 + - + 320 + 11 + 2 + 2xWDG,RTC,SysTick + 24 + - + 2 + 2 + 136 + LCD 4x44/8x40 + 2 + - + 4 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.71 + 3.6 + 0.03 + 90 + -40 + 85 + + + + + STM32L496AG + STM32L496AG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 80 + - + - + 1024 + - + 320 + 11 + 2 + 2xWDG,RTC,SysTick + 24 + - + 2 + 2 + 136 + LCD 4x44/8x40 + 2 + - + 4 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + - + - + External + 1.71 + 3.6 + 0.03 + 90 + -40 + 125,85 + + + + + STM32L496QE + STM32L496QE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M4 + 80 + - + - + 512 + - + 320 + 11 + 2 + 2xWDG,RTC,SysTick + 19 + - + 2 + 2 + 110 + LCD 4x44/8x40 + 2 + - + 4 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.71 + 3.6 + 0.03 + 90 + -40 + 85 + + + + + STM32L496QG + STM32L496QG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M4 + 80 + - + - + 1024 + - + - + 11 + 2 + 2xWDG,RTC,SysTick + 19 + - + 2 + 2 + 110 + LCD 4x44/8x40 + 2 + - + 4 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + - + - + External + 1.71 + 3.6 + 0.03 + 90 + -40 + 125,85 + + + + + STM32L496RE + STM32L496RE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 80 + - + - + 512 + - + 320 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + - + 52 + LCD 4x44/8x40 + 2 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.71 + 3.6 + 0.03 + 90 + -40 + 85 + + + + + STM32L496RG + STM32L496RG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 80 + - + - + 1024 + - + - + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 52 + LCD 4x44/8x40 + 2 + - + - + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + - + - + External + 1.71 + 3.6 + 0.03 + 90 + -40 + 125,85 + + + + + STM32L496VE + STM32L496VE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 80 + - + - + 512 + - + 320 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 83 + LCD 4x44/8x40 + 2 + - + 4 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.71 + 3.6 + 0.03 + 90 + -40 + 85 + + + + + STM32L496VG + STM32L496VG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM + Active + LQFP 100 14x14x1.4,WLCSP 100L PITCH 0.4 DIE 461 + Arm Cortex-M4 + 80 + - + - + 1024 + - + - + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 83 + LCD 4x44/8x40 + 2 + - + 4 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + - + - + External + 1.71 + 3.6 + 0.03 + 90 + -40 + 125,85 + + + + + STM32L496ZE + STM32L496ZE + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 80 + - + - + 512 + - + 320 + 11 + 2 + 2xWDG,RTC,SysTick + 24 + - + 2 + 2 + 115 + LCD 4x44/8x40 + 2 + - + 4 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + - + - + - + 1.71 + 3.6 + 0.03 + 90 + -40 + 85 + + + + + STM32L496ZG + STM32L496ZG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 320 + 11 + 2 + 2xWDG,RTC,SysTick + 24 + - + 2 + 2 + 115 + LCD 4x44/8x40 + 2 + - + 4 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + - + - + External + 1.71 + 3.6 + 0.03 + 90 + -40 + 125,85 + + + + + STM32L4A6AG + STM32L4A6AG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 80 + - + - + 1024 + - + 320 + 11 + 2 + 2xWDG,RTC,SysTick + 24 + - + 2 + 2 + 136 + LCD 4x44/8x40 + 2 + - + 4 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + AES,SHA + - + External + 1.71 + 3.6 + 0.03 + 90 + -40 + 85 + + + + + STM32L4A6QG + STM32L4A6QG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 320 + 11 + 2 + 2xWDG,RTC,SysTick + 19 + - + 2 + 2 + 110 + LCD 4x44/8x40 + 2 + - + 4 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + AES,SHA + - + External + 1.71 + 3.6 + 0.03 + 90 + -40 + 85 + + + + + STM32L4A6RG + STM32L4A6RG + Ultra-low-power with FPU Arm Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM + Active + LQFP 64 10x10x1.4 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 320 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 52 + LCD 4x44/8x40 + 2 + - + 3 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + AES,SHA + - + External + 1.71 + 3.6 + 0.03 + 90 + -40 + 85 + + + + + STM32L4A6VG + STM32L4A6VG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM + Active + LQFP 100 14x14x1.4,WLCSP 100L PITCH 0.4 DIE 461 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 320 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 83 + LCD 4x44/8x40 + 2 + - + 4 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + AES,SHA + - + - + 1.71 + 3.6 + 0.03 + 90 + -40 + 85 + + + + + STM32L4A6ZG + STM32L4A6ZG + Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 80 + - + - + 1024 + - + 320 + 11 + 2 + 2xWDG,RTC,SysTick + 24 + - + 2 + 2 + 115 + LCD 4x44/8x40 + 2 + - + 4 + 3 + - + USB OTG FS + 5 + 1 + - + 2 + SAI + Camera IF,DFSDM,FMC,Quad SPI,SDIO + AES,SHA + - + External + 1.71 + 3.6 + 0.03 + 90 + -40 + 85 + + + + + STM32L4R5AG + STM32L4R5AG + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, CHROM-ART + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 120 + - + - + 1024 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 140 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + Camera IF,DFSDM,FMC,SD/MMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4R5AI + STM32L4R5AI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 140 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + External + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4R5QI + STM32L4R5QI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART + Active + UFBGA 7X7X0.6 132L P 0.5 R 12X12 + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 110 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + External + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4R5VG + STM32L4R5VG + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, CHROM-ART + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 120 + - + - + 1024 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 83 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4R5VI + STM32L4R5VI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 83 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4R5ZG + STM32L4R5ZG + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, CHROM-ART + Active + LQFP 144 20x20x1.4,WLCSP 144L DIE 470 PITCH 0.4 + Arm Cortex-M4 + 120 + - + - + 1024 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 115 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4R5ZI + STM32L4R5ZI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART + Active + LQFP 144 20x20x1.4,WLCSP 144L DIE 470 PITCH 0.4 + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 115 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4R7AI + STM32L4R7AI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 140 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4R7VI + STM32L4R7VI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT + Active + LQFP 100 14x14x1.4 + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 83 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4R7ZI + STM32L4R7ZI + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT + Active + LQFP 144 20x20x1.4 + Arm Cortex-M4 + 120 + - + - + 2048 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 16 + - + 2 + 2 + 115 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + DFSDM,FMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L4R9AG + STM32L4R9AG + Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI + Active + UFBGA 7X7X0.6 169L P 0.5 MM + Arm Cortex-M4 + 120 + - + - + 1024 + - + 640 + 11 + 2 + 2xWDG,RTC,SysTick + 14 + - + 2 + 2 + 131 + - + 1 + - + 4 + 3 + - + USB OTG FS + 6 + - + - + 2 + SAI + Camera IF,DFSDM,FMC,SD/MMC + - + true + - + 1.71 + 3.6 + 0.02 + 112 + -40 + 85 + + + + + STM32L152C6 + STM32L152C6 + Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB + NRND + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 32 + 4096 + 10 + 6 + - + 2 x WDG,RTC,SysTick + 14 + - + 2 + 2 + 37 + LCD 4x18 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152C8 + STM32L152C8 + Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB + NRND + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 64 + 4096 + 10 + 6 + - + 2 x WDG,RTC,SysTick + 14 + - + 2 + 2 + 36 + LCD 4x16 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152CB + STM32L152CB + Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB + NRND + LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55 + Arm Cortex-M3 + 32 + - + - + 128 + 4096 + 16 + 6 + - + 2 x WDG,RTC,SysTick + 14 + - + 2 + 2 + 37 + LCD 4x18 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152R6 + STM32L152R6 + Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB + NRND + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 32 + - + - + 32 + 4096 + 10 + 6 + - + 2xWDG,RTC,SysTick + 20 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152R8 + STM32L152R8 + Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB + NRND + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 32 + - + - + 64 + 4096 + 10 + 6 + - + 2xWDG,RTC,SysTick + 20 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152RB + STM32L152RB + Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB + NRND + LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2 + Arm Cortex-M3 + 32 + - + - + 128 + 4096 + 16 + 6 + - + 2xWDG,RTC,SysTick + 20 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152RC-A + STM32L152RC-A + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp + NRND + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 21 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152V8 + STM32L152V8 + Ultra-low-power Cortex-M3 MCU with 64 Kbytes Flash, RTC, LCD, USB + NRND + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M3 + 32 + - + - + 64 + 4096 + 10 + 6 + - + 2 x WDG,RTC,SysTick + 24 + - + 2 + 2 + 82 + LCD 4x44/8x40 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152VB + STM32L152VB + Ultra-low-power Cortex-M3 MCU with 128 Kbytes Flash, RTC, LCD, USB + NRND + LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6 + Arm Cortex-M3 + 32 + - + - + 128 + 4096 + 16 + 6 + - + 2 x WDG,RTC,SysTick + 24 + - + 2 + 2 + 83 + LCD 4x44/8x40 + - + - + 2 + 2 + - + USB Device + 3 + - + - + - + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L152VC-A + STM32L152VC-A + Ultra-low-power Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp + NRND + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2 x WDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + - + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L162RC-A + STM32L162RC-A + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES + NRND + LQFP 64 10x10x1.4 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 21 + - + 2 + 2 + 51 + LCD 4x32/8x28 + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + AES + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + + STM32L162VC-A + STM32L162VC-A + Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES + NRND + LQFP 100 14x14x1.4 + Arm Cortex-M3 + 32 + - + - + 256 + 8192 + 32 + 8 + 1 + 2xWDG,RTC,SysTick + 25 + - + 2 + 2 + 83 + LCD 4x44/8x40 + - + - + 2 + 3 + 2 + USB Device + 3 + - + - + 2 + - + - + AES + - + - + 1.65 + 3.6 + 0.3 + 185 + -40 + 85 + + + + diff --git a/stm32/owl/STM32 Wireless MCUs.owl b/stm32/owl/STM32 Wireless MCUs.owl new file mode 100644 index 0000000..397167f --- /dev/null +++ b/stm32/owl/STM32 Wireless MCUs.owl @@ -0,0 +1,403 @@ + + + + + Chip Has Marketing Status + + marketing-status + + + + Chip Has Package + + package + + + + Chip Has Core + + core + + + + Chip Has Operating Frequency (MHz) (Processor speed) + + operating-frequency-mhz-processor-speed + + + + Chip Has Co-Processor type + + co-processor-type + + + + Chip Has Co-Processor frequency (MHz) max + + co-processor-frequency-mhz-max + + + + Chip Has FLASH Size (kB) (Prog) + + flash-size-kb-prog + + + + Chip Has Data E2PROM (B) nom + + data-e2prom-b-nom + + + + Chip Has RAM Size (kB) + + ram-size-kb + + + + Chip Has Timers (16 bit) typ + + timers-16-bit-typ + + + + Chip Has Timers (32 bit) typ + + timers-32-bit-typ + + + + Chip Has Other timer functions + + other-timer-functions + + + + Chip Has A/D Converters (12-bit channels) + + ad-converters-12-bit-channels + + + + Chip Has A/D Converters (16-bit channels) + + ad-converters-16-bit-channels + + + + Chip Has D/A Converters (12 bit) typ + + da-converters--12-bit-typ + + + + Chip Has Comparator + + comparator + + + + Chip Has I/Os (High Current) + + ios-high-current + + + + Chip Has Display controller + + display-controller + + + + Chip Has CAN typ + + can--typ + + + + Chip Has CAN FD typ + + can-fd-typ + + + + Chip Has I2C typ + + i2c-typ + + + + Chip Has SPI typ + + spi-typ + + + + Chip Has I2S typ + + i2s-typ + + + + Chip Has USB Type + + usb-type + + + + Chip Has USART typ + + usart--typ + + + + Chip Has UART typ + + uart-typ + + + + + + + STM32 Wireless MCUs + + + + Chip Has Part Number + + part-number + + + + Chip Has General Description + + general-description + + + + Chip Has Connectivity supported + + connectivity-supported + + + + Chip Has Integrated op-amps + + integrated-op-amps + + + + Chip Has Additional Serial Interfaces + + additional-serial-interfaces + + + + Chip Has Parallel Interfaces + + parallel-interfaces + + + + Chip Has Crypto-HASH + + crypto-hash + + + + Chip Has TRNG typ + + trng-typ + + + + Chip Has SMPS + + smps + + + + Chip Has Supply Voltage (V) min + + supply-voltage-v-min + + + + Chip Has Supply Voltage (V) max + + supply-voltage-v-max + + + + Chip Has Supply Current (uA) (Lowest power mode) typ + + supply-current-ua-lowest-power-mode-typ + + + + Chip Has Supply Current (uA) (Run mode (per Mhz)) typ + + supply-current-ua-run-mode-per-mhz-typ + + + + Chip Has Operating Temperature (oC) min + + operating-temperature-oc-min + + + + Chip Has Operating Temperature (oC) max + + operating-temperature-oc-max + + + + + STM32WB55CG + STM32WB55CG + Ultra-low-power dual core Arm Cortex-M4 MCU 64 MHz, Cortex-M0 32MHz with 1 Mbyte Flash, BLE, 802.15.4, USB, LCD, AES-256 + Preview + UFQFPN 48 7x7x0.55 + Arm Cortex-M4 + 64 + Arm Cortex-M0+ + 32 + 1024 + - + 256 + 5 + 1 + 2xWDG,PWM,RTC,SysTick + 16 + - + - + 2 + 29 + LCD 4x44/8x40 + - + - + 2 + 1 + - + USB FS + 1 + 1 + 2.4GHz,802.15.4,BLE,Thread/OpenThread,ZigBee + - + SAI + Quad SPI + AES + true + - + 1.71 + 3.6 + 0.6 + 90 + -40 + 105,85 + + + + + STM32WB55RG + STM32WB55RG + Ultra-low-power dual core Arm Cortex-M4 MCU 64 MHz, Cortex-M0 32MHz with 1 Mbyte Flash, BLE, 802.15.4, USB, LCD, AES-256 + Preview + VFQFPN 8X8X1.0 68L PITCH 0.4 + Arm Cortex-M4 + 64 + Arm Cortex-M0+ + 32 + 1024 + - + 256 + 5 + 1 + 2xWDG,PWM,RTC,SysTick + 16 + - + - + 2 + 48 + LCD 4x44/8x40 + - + - + 2 + 2 + - + USB FS + 1 + 1 + 2.4GHz,802.15.4,BLE,Thread/OpenThread,ZigBee + - + SAI + Quad SPI + AES + true + - + 1.71 + 3.6 + 0.6 + 90 + -40 + 105,85 + + + + + STM32WB55VG + STM32WB55VG + Ultra-low-power dual core Arm Cortex-M4 MCU 64 MHz, Cortex-M0 32MHz with 1 Mbyte Flash, BLE, 802.15.4, USB, LCD, AES-256 + Preview + THIN WLCSP 100 DIE 495 P0.4,WLCSP 100L DIE 495 PITCH 0.4 + Arm Cortex-M4 + 64 + Arm Cortex-M0+ + 32 + 1024 + - + 256 + 5 + 1 + 2xWDG,PWM,RTC,SysTick + 16 + - + - + 2 + 72 + LCD 4x44/8x40 + - + - + 2 + 2 + - + USB FS + 1 + 1 + 2.4GHz,802.15.4,BLE,Thread/OpenThread,ZigBee + - + SAI + Quad SPI + AES + true + - + 1.71 + 3.6 + 0.6 + 90 + -40 + 85 + + + + diff --git a/stm32/run.py b/stm32/run.py index 097dbd2..521372c 100755 --- a/stm32/run.py +++ b/stm32/run.py @@ -1,7 +1,10 @@ #!/usr/bin/env python3 +import urllib.parse +import owlready2 as owl import re import shutil +import types from collections import defaultdict from jinja2 import Environment, FileSystemLoader, select_autoescape from openpyxl import load_workbook @@ -32,6 +35,19 @@ def load_file(filename, line): fields = [cell.value for cell in header] + data_properties = {} + for field in fields: + class_name = field + class_name = class_name.lower() + class_name = class_name.replace(" ", "-") + class_name = class_name.replace("/", "") + class_name = class_name.replace("(", "") + class_name = class_name.replace(")", "") + cls = types.new_class(class_name, (owl.DataProperty,)) + cls.label = "Has {}".format(field) + cls.domain = [Chip] + data_properties[field] = cls + # print("Header") # print(fields) @@ -83,6 +99,8 @@ def load_file(filename, line): # This is probably a bug in the spreadsheet. part["00 RAM"] = part["RAM Size (kB)"] if "RAM Size (kB)" in part else None + + if False: for part in parts.values(): for k, v in part.items(): @@ -93,12 +111,9 @@ def load_file(filename, line): else: print("{}: {}".format(k, v)) - if False: - break - - process_parts(parts) + return parts, data_properties -def process_parts(parts): +def process_parts(parts, data_properties): r = r"^(STM32F.|STM32H.|STM32L[012356789]|STM32L4[RS]|STM32L4|STM32WB).*" subfamily = lambda p: p["Part Number"][0:9] @@ -106,29 +121,24 @@ def process_parts(parts): # x = subfamily(p) # print("{} => {}".format(p["Part Number"], x)) - if False: - for part_number, part in parts.items(): - path = out_dir / "Chip:{}.mw".format(part_number) - with open(path, "w") as out: - template = env.get_template("mw.j2") - out.write(template.render(part=part)) - for subfamily, values in groupby(sorted(parts.values(), key=subfamily), key=subfamily): - values = list(values) -# print("{}, len={}".format(subfamily, len(values))) - write_parts(subfamily, values) + write_parts(subfamily, list(values), data_properties) -def write_parts(subfamily, parts): +def write_parts(subfamily, parts, data_properties): fields = list(next(parts.__iter__()).keys()) # [print("fieldXXX:{}".format(f)) for f in fields] print("subfamily: {}".format(subfamily)) + chip = Chip(subfamily) + chip.label = subfamily + distinct_fields = set() shared_fields = {} for field in fields: if field in distinct_fields: +# chip.setattr(data_properties[field]()) continue first = True @@ -160,9 +170,35 @@ def write_parts(subfamily, parts): parts=parts)) out_dir = Path("mw") -if out_dir.exists(): - shutil.rmtree(out_dir) -out_dir.mkdir() +owl_dir = Path("owl") + +for d in [out_dir, owl_dir]: + if d.exists(): + shutil.rmtree(d) + d.mkdir() + +base_url = "https://trygvis.io/owl/stm32" + +onto = owl.get_ontology("{}/stm32-shared.owl".format(base_url)) +shared_url = onto.base_iri +with onto: + class Chip(owl.Thing): pass + Chip.label = "Chip" + class Line(owl.DataProperty): + domain = [Chip] + range = [str] + Line.label = "Line" +with open(owl_dir / Path(onto.base_iri).name[0:-1], "wb") as f: + onto.save(f) for filename, line in files: - load_file(filename, line) + owl_file = "stm32-{}.owl".format(filename[:-5]) + url = "{}/{}".format(base_url, urllib.parse.quote(owl_file)) + + onto = owl.get_ontology(url) + with onto: + parts, data_properties = load_file(filename, line) + + process_parts(parts, data_properties) + with open(owl_dir / owl_file, "wb") as f: + onto.save(f) diff --git a/stm32/stm32.rules b/stm32/stm32.rules new file mode 100644 index 0000000..4809e6f --- /dev/null +++ b/stm32/stm32.rules @@ -0,0 +1,22 @@ +# @prefix : . +@prefix : + +[hasStudentRule: + (?student :takesCourse ?course) + (?lecturer :teachesCourse ?course) + -> + (?lecturer :hasStudent ?student) +] + +[pensionerRule: + (?person :hasAge ?age) + greaterThan(?age, 60) + -> + (?person a :Pensioner) +] + +[wat: + (?chip :co-processor-type "-") + -> + remove(0) +] -- cgit v1.2.3