summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--dodo.py43
-rw-r--r--requirements.txt4
-rw-r--r--rules/.gitignore2
-rw-r--r--rules/pom.xml72
-rw-r--r--rules/src/main/java/io/trygvis/semantic/Main.java88
-rw-r--r--rules/src/main/resources/log4j2.xml26
-rw-r--r--stm32/__init__.py87
-rw-r--r--stm32/csv/STM32 High Performance MCUs.csv288
-rw-r--r--stm32/csv/STM32 Mainstream MCUs.csv237
-rw-r--r--stm32/csv/STM32 Ultra Low Power MCUs.csv286
-rw-r--r--stm32/csv/STM32 Wireless MCUs.csv4
-rw-r--r--stm32/owl/STM32 High Performance MCUs.owl13771
-rw-r--r--stm32/owl/STM32 Mainstream MCUs.owl11121
-rw-r--r--stm32/owl/STM32 Ultra Low Power MCUs.owl13392
-rw-r--r--stm32/owl/STM32 Wireless MCUs.owl403
-rwxr-xr-xstm32/run.py76
-rw-r--r--stm32/stm32.rules22
18 files changed, 39905 insertions, 20 deletions
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 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>io.trygvis.semantic</groupId>
+ <artifactId>semantic-sandbox</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <maven.compiler.source>1.8</maven.compiler.source>
+ <maven.compiler.target>1.8</maven.compiler.target>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-api</artifactId>
+ <version>2.6.2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-core</artifactId>
+ <version>2.6.2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-slf4j-impl</artifactId>
+ <version>2.6.2</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.12</version>
+ <scope>test</scope>
+ </dependency>
+ <!-- https://mvnrepository.com/artifact/org.apache.jena/apache-jena-libs -->
+ <dependency>
+ <groupId>org.apache.jena</groupId>
+ <artifactId>apache-jena-libs</artifactId>
+ <version>3.8.0</version>
+ <type>pom</type>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>appassembler-maven-plugin</artifactId>
+ <version>1.10</version>
+ <executions>
+ <execution>
+ <id>assemble</id>
+ <phase>package</phase>
+ <goals>
+ <goal>assemble</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <programs>
+ <program>
+ <mainClass>io.trygvis.semantic.Main</mainClass>
+ <id>rules</id>
+ </program>
+ </programs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
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<Statement> 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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Configuration package="log4j.test" status="WARN">
+<Appenders>
+ <Console name="Console" target="SYSTEM_OUT">
+ <PatternLayout pattern="%markerSimpleName %-5p %C.%M():%L - %msg %ex{full}%n"/>
+ </Console>
+ <File name="Log" fileName="./logs/App.log">
+ <PatternLayout>
+ <Pattern>%markerSimpleName %-5p %C.%M():%L - %msg %ex{full}%n</Pattern>
+ </PatternLayout>
+ </File>
+</Appenders>
+<Loggers>
+ <Root level="trace">
+ <AppenderRef ref="Console"/>
+ <AppenderRef ref="Log"/>
+ </Root>
+ <!--<Logger name="root" level="trace" additivity="false">
+ <AppenderRef ref="Console"/>
+ </Logger>
+ <Logger name="root" level="trace" additivity="false">
+ <AppenderRef ref="Console"/>
+ <AppenderRef ref="Log"/>
+ </Logger>-->
+</Loggers>
+</Configuration>
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 @@
+<?xml version="1.0"?>
+<rdf:RDF xml:base="https://trygvis.io/owl/stm32/STM32%20High%20Performance%20MCUs.owl"
+ xmlns="https://trygvis.io/owl/stm32/STM32%20High%20Performance%20MCUs.owl#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+ xmlns:owl="http://www.w3.org/2002/07/owl#"
+ xmlns:owlr="http://www.lesfleursdunormal.fr/static/_downloads/owlready_ontology.owl#"
+ xmlns:shar="https://trygvis.io/owl/stm32/shared.owl#">
+
+<owl:Ontology rdf:about="https://trygvis.io/owl/stm32/STM32%20High%20Performance%20MCUs.owl"/>
+
+<owl:Class rdf:about="https://trygvis.io/owl/stm32/shared.owl#Chip">
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip</rdfs:label>
+</owl:Class>
+
+<owl:Class rdf:about="https://trygvis.io/owl/stm32/shared.owl#ChipLine">
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ChipLine</rdfs:label>
+</owl:Class>
+
+<owl:ObjectProperty rdf:about="https://trygvis.io/owl/stm32/shared.owl#HasChipLine">
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <rdfs:range rdf:resource="https://trygvis.io/owl/stm32/shared.owl#ChipLine"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chip_line</owlr:python_name>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Line</rdfs:label>
+</owl:ObjectProperty>
+
+<shar:ChipLine rdf:about="#STM32%20High%20Performance%20MCUs">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32 High Performance MCUs</rdfs:label>
+</shar:ChipLine>
+
+<owl:DatatypeProperty rdf:about="#part-number">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Part Number</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">part_number</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#general-description">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has General Description</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">general_description</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#marketing-status">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Marketing Status</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">marketing_status</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#package">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Package</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">package</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#core">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Core</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">core</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#operating-frequency-mhz-processor-speed">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Operating Frequency (MHz) (Processor speed)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">operating_frequency_mhz_processor_speed</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#co-processor-type">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Co-Processor type</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">co_processor_type</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#co-processor-frequency-mhz-max">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Co-Processor frequency (MHz) max</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">co_processor_frequency_mhz_max</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#flash-size-kb-prog">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has FLASH Size (kB) (Prog)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flash_size_kb_prog</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#data-e2prom-b-nom">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Data E2PROM (B) nom</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">data_e2prom_b_nom</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#ram-size-kb">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has RAM Size (kB)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ram_size_kb</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#timers-16-bit-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Timers (16 bit) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">timers_16_bit_typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#timers-32-bit-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Timers (32 bit) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">timers_32_bit_typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#other-timer-functions">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Other timer functions</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">other_timer_functions</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#operating-temperature-oc-max">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Operating Temperature (oC) max</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">operating_temperature_oc_max</owlr:python_name>
+</owl:DatatypeProperty>
+
+<shar:Chip rdf:about="#STM32F411VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F411VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F411VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 100 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F413VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,SysTick,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FSMC,Quad SPI,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F730I8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F730I8</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F730I8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">138</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F730R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F730R8</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F730R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F730V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F730V8</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F730V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F730Z8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F730Z8</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F730Z8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F745IE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F745IE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F745IE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F746NG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746NG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746NG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F750N8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F750N8</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F750N8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F750V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F750V8</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F750V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F750Z8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F750Z8</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F750Z8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F765NI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765NI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765NI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F765ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H750IB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H750IB</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H750IB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,HR Timer,LP timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.62</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H750VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H750VB</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H750VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,HR Timer,LP timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H750XB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H750XB</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H750XB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 14X14X1.2 P 0.8 240+25L</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,HR Timer,LP timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.62</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F205RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205RB</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 128 Kbytes Flash, 120 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F205RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205RC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F205RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205RE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,WLCSP 66L R9X9 PITCH 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F205RF">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205RF</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205RF</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">768</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F205RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205RG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EWLCSP 66L DIE 411 P 0.4 MM,LQFP 64 10x10x1.4,WLCSP 66L R9X9 PITCH 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F205VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205VB</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 128 Kbytes Flash, 120 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F205VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205VC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F205VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F205VF">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205VF</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205VF</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">768</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<owl:DatatypeProperty rdf:about="#ad-converters-12-bit-channels">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has A/D Converters (12-bit channels)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ad_converters_12_bit_channels</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#ad-converters-16-bit-channels">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has A/D Converters (16-bit channels)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ad_converters_16_bit_channels</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#da-converters--12-bit-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has D/A Converters (12 bit) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">da_converters__12_bit_typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#comparator">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Comparator</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">comparator</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#ios-high-current">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has I/Os (High Current)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ios_high_current</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#display-controller">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Display controller</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">display_controller</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#can--typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has CAN typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">can__typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#can-fd-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has CAN FD typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">can_fd_typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#i2c-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has I2C typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">i2c_typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#spi-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has SPI typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">spi_typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#i2s-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has I2S typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">i2s_typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#usb-type">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has USB Type</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">usb_type</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#usart--typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has USART typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">usart__typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#uart-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has UART typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">uart_typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#connectivity-supported">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Connectivity supported</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">connectivity_supported</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#integrated-op-amps">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Integrated op-amps</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">integrated_op_amps</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#additional-serial-interfaces">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Additional Serial Interfaces</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">additional_serial_interfaces</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#parallel-interfaces">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Parallel Interfaces</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">parallel_interfaces</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#crypto-hash">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Crypto-HASH</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">crypto_hash</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#trng-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has TRNG typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">trng_typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#smps">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has SMPS</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">smps</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-voltage-v-min">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Voltage (V) min</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply_voltage_v_min</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-voltage-v-max">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Voltage (V) max</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply_voltage_v_max</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-current-ua-lowest-power-mode-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Current (uA) (Lowest power mode) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply_current_ua_lowest_power_mode_typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-current-ua-run-mode-per-mhz-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Current (uA) (Run mode (per Mhz)) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply_current_ua_run_mode_per_mhz_typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#operating-temperature-oc-min">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Operating Temperature (oC) min</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">operating_temperature_oc_min</owlr:python_name>
+</owl:DatatypeProperty>
+
+<shar:Chip rdf:about="#STM32F205VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F205ZC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205ZC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205ZC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F205ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F205ZF">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205ZF</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205ZF</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">768</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F205ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F205ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F207IC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207IC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207IC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F207IE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207IE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207IE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F207IF">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207IF</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207IF</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">768</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F207IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F207VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207VC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F401RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401RE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32 Dynamic Efficiency MCU, ARM Cortex-M4 core with DSP and FPU, up to 512 Kbytes Flash, 84 MHz CPU, Art Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">137</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F401VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401VB</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, Arm Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 84 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F401VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401VC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 84 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F401VD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401VD</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401VD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 384 Kbytes Flash, 84 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">137</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F401VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 84 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">137</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F405OE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F405OE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F405OE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, FSMC</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 90 BALLS DIE 413 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F405OG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F405OG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F405OG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 90 BALLS DIE 413 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F405RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F405RG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F405RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F405VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F405VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F405VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F405ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F405ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F405ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F407IE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F407IE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F407IE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F407IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F407IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F407IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F407VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F407VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F407VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F407VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F407VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F407VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F407ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F407ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F407ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F407ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F407ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F407ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F410C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F410C8</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F410C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">89</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F410CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F410CB</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F410CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">89</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40,40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F410R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F410R8</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F410R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">89</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F410RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F410RB</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F410RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">89</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F410T8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F410T8</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F410T8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 36L die 458 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">23</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">89</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F410TB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F410TB</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F410TB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 36L die 458 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">23</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">89</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F411CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F411CC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F411CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 100 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55,WLCSP 49L DIE 431 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F411CE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F411CE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F411CE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 100 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55,WLCSP 49L DIE 431 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F411RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F411RC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F411RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 100 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F411RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F411RE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F411RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 100 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F207VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F207VF">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207VF</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207VF</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">768</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F207VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F207ZC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207ZC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207ZC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 256 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F207ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F207ZF">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207ZF</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207ZF</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 768 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">768</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F207ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F207ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F215RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F215RE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F215RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F215RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F215RG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F215RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F215VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F215VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F215VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F215VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F215VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F215VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F215ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F215ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F215ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F215ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F215ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F215ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F217IE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F217IE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F217IE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F217IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F217IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F217IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F217VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F217VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F217VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F217VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F217VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F217VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F217ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F217ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F217ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 512 Kbytes Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F217ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F217ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F217ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance Arm Cortex-M3 MCU with 1 Mbyte Flash, 120 MHz CPU, ART Accelerator, Ethernet, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F401CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401CB</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 84 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F401CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401CC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 84 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">THIN WLCSP 49L DIE 423 PITCH 0.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 423 R 7X7 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F401CD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401CD</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401CD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 384 Kbytes Flash, 84 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55,WLCSP 49L DIE 433 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">137</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F401CE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401CE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401CE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 84 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55,WLCSP 49L DIE 433 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">137</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F401RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401RB</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 84 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7,1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F401RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401RC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 84 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F401RD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401RD</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F401RD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 384 Kbytes Flash, 84 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">137</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F411VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F411VC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F411VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 100 MHz CPU, ART Accelerator</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F412CE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412CE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412CE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F412CG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412CG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412CG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F412RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412RE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,WLCSP 64L DIE 441 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F412RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412RG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,WLCSP 64L DIE 441 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F412VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F412VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F412ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F412ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F412ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F413CG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413CG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413CG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F427II">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427II</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427II</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F427VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator, FSMC</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F427VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427VI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance advanced line, ARM Cortex-M4 core with DSP and FPU, 2 Mbytes Flash, 180 MHz CPU, ART Accelerator, Chrom-ART Accelerator,FSMC</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F427ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F427ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427ZI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429AG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429AG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429AG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">130</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429AI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">130</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429BE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429BE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429BE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429BG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429BG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429BG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429BI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429BI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429BI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429IE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429IE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429IE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429II">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429II</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429II</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429NE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429NE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429NE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429NG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429NG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429NG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M4 MCU with 1 Mbyte Flash, 180 MHz CPU, Art Accelerator, SRAM, TFT</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429NI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429NI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429NI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429VI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,WLCSP 143 BALLS DIE 419 P 0.4MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F429ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429ZI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F429ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,WLCSP 143 BALLS DIE 419 P 0.4MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F437AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F437AI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F437AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">130</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F437IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F437IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F437IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F437II">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F437II</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F437II</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F437VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F437VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F437VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F413CH">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413CH</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413CH</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1536</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,SysTick,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F413MG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413MG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413MG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 81L DIE 463 PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,SysTick,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">60</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FSMC,Quad SPI,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F413MH">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413MH</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413MH</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 81L DIE 463 PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1536</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,SysTick,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">60</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FSMC,Quad SPI,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F413RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413RG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,SysTick,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FSMC,Quad SPI,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F413RH">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413RH</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413RH</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1536</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FSMC,Quad SPI,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F413VH">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413VH</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413VH</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1536</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,SysTick,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FSMC,Quad SPI,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F413ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,SysTick,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FSMC,Quad SPI,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F413ZH">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413ZH</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F413ZH</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1536</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,SysTick,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FSMC,Quad SPI,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F415OG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F415OG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F415OG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 90 BALLS DIE 413 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F415RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F415RG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F415RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F415VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F415VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F415VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F415ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F415ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F415ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, FSMC, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F417IE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F417IE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F417IE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F417IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F417IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F417IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F417VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F417VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F417VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F417VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F417VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F417VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F417ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F417ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F417ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F417ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F417ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F417ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 1 Mbyte Flash, 168 MHz CPU, ART Accelerator, Ethernet, FSMC, HW crypto</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FSMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F423CH">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F423CH</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F423CH</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1536</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,SysTick,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F423MH">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F423MH</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F423MH</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 81L DIE 463 PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1536</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,SysTick,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">60</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FSMC,Quad SPI,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F423RH">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F423RH</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F423RH</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1536</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,SysTick,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FSMC,Quad SPI,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F423VH">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F423VH</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F423VH</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1536</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,SysTick,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FSMC,Quad SPI,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F423ZH">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F423ZH</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F423ZH</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance access line, ARM Cortex-M4 core with DSP and FPU, 1,5 MByte Flash, 100 MHz CPU, ART Accelerator, DFSDM, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1536</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,SysTick,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FSMC,Quad SPI,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F427AG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427AG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427AG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">130</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F427AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427AI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">130</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F427IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F427IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F437VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F437VI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F437VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F437ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F437ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F437ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F437ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F437ZI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F437ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F439AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439AI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F439BG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439BG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439BG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F439BI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439BI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439BI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F439IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F439II">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439II</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439II</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F439NG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439NG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439NG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F439NI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439NI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439NI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469VI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">71</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">106</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">106</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469ZI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">106</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F479AG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479AG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479AG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F479AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479AI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM,WLCSP 168L DIE 434 12X14 P 0.4MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F479BG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479BG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479BG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F479BI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479BI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479BI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F479IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">131</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F479II">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479II</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479II</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">131</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F479NG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479NG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479NG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F479NI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479NI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479NI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F479VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">71</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F479VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479VI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">71</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F479ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">106</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F479ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479ZI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F479ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">106</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F722IC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722IC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722IC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F722IE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722IE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722IE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F722RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722RC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F722RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722RE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F722VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722VC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F722VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F722ZC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722ZC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722ZC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F722ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F722ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F723IC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F723IC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F723IC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">138</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F723IE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F723IE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F723IE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">138</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F439VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F439VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439VI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F439ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,WLCSP 143 BALLS DIE 419 P 0.4MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F439ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439ZI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F439ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,WLCSP 143 BALLS DIE 419 P 0.4MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F446MC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446MC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446MC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 81L DIE 421 R 9X9 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">63</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.12</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">167</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F446ME">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446ME</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446ME</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 81L DIE 421 R 9X9 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">63</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.12</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">167</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F446RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446RC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.12</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">167</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F446RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446RE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.12</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">167</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F446VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446VC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.12</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">167</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F446VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.12</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">167</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F446ZC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446ZC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446ZC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,UFBGA 144 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.12</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">167</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F446ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F446ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance foundation line, ARM Cortex-M4 core with DSP and FPU, 512 Kbytes Flash, 180 MHz CPU, ART Accelerator, Dual QSPI</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,UFBGA 144 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.12</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">167</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469AE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469AE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469AE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">144</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469AG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469AG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469AG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM,WLCSP 168L DIE 434 12X14 P 0.4MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469AI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM,WLCSP 168L DIE 434 12X14 P 0.4MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469BE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469BE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469BE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469BG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469BG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469BG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469BI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469BI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469BI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469IE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469IE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469IE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">131</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">131</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469II">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469II</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469II</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">131</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469NE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469NE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469NE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469NG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469NG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469NG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469NI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469NI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469NI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">71</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F469VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F469VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">71</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,FMC,Quad SPI,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F723VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F723VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F723VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 100L DIE 452 P 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">79</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F723ZC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F723ZC</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F723ZC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 256 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 144 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F723ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F723ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F723ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 144 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F732IE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F732IE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F732IE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F732RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F732RE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F732RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F732VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F732VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F732VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F732ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F732ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F732ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F733IE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F733IE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F733IE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">138</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F733VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F733VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F733VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 100L DIE 452 P 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">79</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F733ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F733ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F733ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, Arm Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 144 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F765ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765ZI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F767BG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767BG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767BG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F767BI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767BI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767BI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F767IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F767II">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767II</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767II</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F767NG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767NG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767NG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F767NI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767NI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767NI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F767VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F767VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767VI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F767ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F767ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767ZI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F767ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F769AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F769AI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F769AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 180L DIE 451 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F769BG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F769BG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F769BG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728 ,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F769BI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F769BI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F769BI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F769IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F769IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F769IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728 ,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F769II">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F769II</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F769II</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F769NG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F769NG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F769NG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728 ,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F769NI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F769NI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F769NI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F777BI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F777BI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F777BI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F777II">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F777II</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F777II</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F777NI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F777NI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F777NI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F777VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F777VI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F777VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F777ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F777ZI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F777ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F778AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F778AI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F778AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 180L DIE 451 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728 ,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F779AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F779AI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F779AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 180L DIE 451 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728 ,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F779BI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F779BI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F779BI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728 ,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F745IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F745IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F745IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F745VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F745VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F745VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F745VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F745VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F745VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F745ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F745ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F745ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F745ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F745ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F745ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F746BE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746BE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746BE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F746BG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746BG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746BG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F746IE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746IE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746IE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F746IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F746NE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746NE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746NE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F746VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746VE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, TFT</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F746VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DCMI,Dual Quad SPI,FMC,FSMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F746ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746ZE</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 512 Kbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,WLCSP 143L DIE 449 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F746ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F746ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, TFT</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,WLCSP 143L DIE 449 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DCMI,Dual Quad SPI,FMC,FSMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F756BG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F756BG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F756BG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F756IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F756IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F756IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F756NG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F756NG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F756NG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F756VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F756VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F756VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F756ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F756ZG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F756ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,WLCSP 143L DIE 449 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dual Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F765BG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765BG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765BG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F765BI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765BI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765BI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F765IG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765IG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765IG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F765II">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765II</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765II</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F765NG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765NG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765NG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F765VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765VG</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 1 Mbyte Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F765VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765VI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F765VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">High-performance and DSP with FPU, ARM Cortex-M7 MCU with 2 Mbytes Flash, 216 MHz CPU, Art Accelerator, L1 cache, SDRAM, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F779II">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F779II</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F779II</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728 ,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F779NI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F779NI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F779NI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 13X13X1.2 216L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728 ,MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DCMI,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H743AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H743AI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H743AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,HR Timer,LP timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">131</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.62</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">278</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H743BI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H743BI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H743BI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,HR Timer,LP timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.62</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">278</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H743II">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H743II</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H743II</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,HR Timer,LP timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.62</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">278</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H743VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H743VI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H743VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,HR Timer,LP timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">278</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40,40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H743XI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H743XI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H743XI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 14X14X1.2 P 0.8 240+25L</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,HR Timer,LP timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.62</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">278</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H743ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H743ZI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H743ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LP timer</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SD/MMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.62</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">278</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H753AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H753AI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H753AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,HR Timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">131</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.62</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H753BI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H753BI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H753BI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 208 28x28x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,HR Timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.62</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H753II">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H753II</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H753II</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BGA 176,LQFP 176 24x24x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,HR Timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.62</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H753VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H753VI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H753VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,TFBGA 8X8 100L F10X10 0.8 MM PIT</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,HR Timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H753XI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H753XI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H753XI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 14X14X1.2 P 0.8 240+25L</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,HR Timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD TFT Controller up to 1024x728</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.62</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32H753ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H753ZI</rdfs:label>
+ <shar:HasChipLine rdf:resource="#STM32%20High%20Performance%20MCUs"/>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32H753ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M7</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,HR Timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS,USB OTG FS + USB OTG FS/HS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet,HDMI CEC,S/PDIF,SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,Dual Quad SPI,FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,DES/TDES,HMAC,MD5,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.62</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+
+</rdf:RDF>
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 @@
+<?xml version="1.0"?>
+<rdf:RDF xml:base="https://trygvis.io/owl/stm32/STM32%20Mainstream%20MCUs.owl"
+ xmlns="https://trygvis.io/owl/stm32/STM32%20Mainstream%20MCUs.owl#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+ xmlns:owl="http://www.w3.org/2002/07/owl#"
+ xmlns:owlr="http://www.lesfleursdunormal.fr/static/_downloads/owlready_ontology.owl#"
+ xmlns:shar="https://trygvis.io/owl/stm32/shared.owl#">
+
+<owl:DatatypeProperty rdf:about="#ios-high-current">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has I/Os (High Current)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ios-high-current</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#display-controller">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Display controller</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">display-controller</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#can--typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has CAN typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">can--typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#can-fd-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has CAN FD typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">can-fd-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#i2c-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has I2C typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">i2c-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#spi-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has SPI typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">spi-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#i2s-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has I2S typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">i2s-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#usb-type">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has USB Type</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">usb-type</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#usart--typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has USART typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">usart--typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#uart-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has UART typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">uart-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#connectivity-supported">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Connectivity supported</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">connectivity-supported</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#integrated-op-amps">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Integrated op-amps</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">integrated-op-amps</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#additional-serial-interfaces">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Additional Serial Interfaces</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">additional-serial-interfaces</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#parallel-interfaces">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Parallel Interfaces</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">parallel-interfaces</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#crypto-hash">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Crypto-HASH</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">crypto-hash</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#trng-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has TRNG typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">trng-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#smps">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has SMPS</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">smps</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-voltage-v-min">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Voltage (V) min</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply-voltage-v-min</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-voltage-v-max">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Voltage (V) max</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply-voltage-v-max</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-current-ua-lowest-power-mode-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Current (uA) (Lowest power mode) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply-current-ua-lowest-power-mode-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-current-ua-run-mode-per-mhz-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Current (uA) (Run mode (per Mhz)) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply-current-ua-run-mode-per-mhz-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#operating-temperature-oc-min">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Operating Temperature (oC) min</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">operating-temperature-oc-min</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#operating-temperature-oc-max">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Operating Temperature (oC) max</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">operating-temperature-oc-max</owlr:python_name>
+</owl:DatatypeProperty>
+
+<shar:Chip rdf:about="#STM32F031K6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031K6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031K6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F334K6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334K6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334K6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick,hr timer (10x217ps)</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F030C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F030C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F030C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Value line MCU with 32 Kbytes Flash, 48 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">39</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.4</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<owl:Ontology rdf:about="https://trygvis.io/owl/stm32/STM32%20Mainstream%20MCUs.owl"/>
+
+<shar:ChipLine rdf:about="#STM32 Mainstream MCUs">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32 Mainstream MCUs</rdfs:label>
+</shar:ChipLine>
+
+<owl:DatatypeProperty rdf:about="#part-number">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Part Number</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">part-number</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#general-description">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has General Description</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">general-description</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#marketing-status">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Marketing Status</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">marketing-status</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#package">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Package</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">package</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#core">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Core</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">core</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#operating-frequency-mhz-processor-speed">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Operating Frequency (MHz) (Processor speed)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">operating-frequency-mhz-processor-speed</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#co-processor-type">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Co-Processor type</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">co-processor-type</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#co-processor-frequency-mhz-max">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Co-Processor frequency (MHz) max</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">co-processor-frequency-mhz-max</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#flash-size-kb-prog">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has FLASH Size (kB) (Prog)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flash-size-kb-prog</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#data-e2prom-b-nom">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Data E2PROM (B) nom</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">data-e2prom-b-nom</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#ram-size-kb">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has RAM Size (kB)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ram-size-kb</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#timers-16-bit-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Timers (16 bit) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">timers-16-bit-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#timers-32-bit-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Timers (32 bit) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">timers-32-bit-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#other-timer-functions">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Other timer functions</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">other-timer-functions</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#ad-converters-12-bit-channels">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has A/D Converters (12-bit channels)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ad-converters-12-bit-channels</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#ad-converters-16-bit-channels">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has A/D Converters (16-bit channels)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ad-converters-16-bit-channels</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#da-converters--12-bit-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has D/A Converters (12 bit) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">da-converters--12-bit-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#comparator">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Comparator</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">comparator</owlr:python_name>
+</owl:DatatypeProperty>
+
+<shar:Chip rdf:about="#STM32F030C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F030C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F030C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Value line MCU with 64 Kbytes Flash, 48 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">39</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.4</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F030CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F030CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F030CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Value line MCU with 256 Kbytes Flash, 48 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.4</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">306</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F030F4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F030F4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F030F4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Value line MCU with 16 Kbytes Flash, 48 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 20</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.4</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F030K6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F030K6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F030K6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Value line MCU with 32 Kbytes Flash, 48 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.4</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F030R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F030R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F030R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Value line MCU with 64 Kbytes Flash, 48 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">55</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.4</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F030RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F030RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F030RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Value line MCU with 256 Kbytes Flash, 48 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.4</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">306</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F031C4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031C4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031C4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU, motor control</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">39</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F031C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">39</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F031E6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031E6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031E6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 25L P 0.4 MM DIE 444</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F031F4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031F4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031F4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 20</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F051K8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051K8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051K8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F051R4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051R4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051R4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">55</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F051R6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051R6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051R6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">55</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F051R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">55</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F051T8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051T8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051T8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 36L P 0.4 MM DIE 440</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">29</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F058C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F058C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F058C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">39</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F058R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F058R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F058R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">55</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F058T8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F058T8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F058T8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 36L P 0.4 MM DIE 440</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">28</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F070C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F070C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F070C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Value line MCU with up to 32 Kbytes Flash, 48 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.4</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">264</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F070CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F070CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F070CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Value line MCU with 128 Kbytes Flash, 48 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.4</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">273</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F070F6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F070F6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F070F6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Value line MCU with up to 32 Kbytes Flash, 48 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 20</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.4</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">264</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F070RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F070RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F070RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Value line MCU with 128 Kbytes Flash, 48 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.4</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">273</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F071C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F071C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F071C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F071CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F071CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F071CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 448 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F071RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F071RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F071RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F071V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F071V8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F071V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F071VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F071VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F071VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F072C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F072C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F072C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 USB line MCU with 64 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F072R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F072R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F072R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 USB line MCU with 64 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F072RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F072RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F072RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 USB line MCU with 128 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F072V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F072V8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F072V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 USB line MCU with 64 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F072VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F072VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F072VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 USB line MCU with 128 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F078CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F078CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F078CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 128 Kbytes Flash, 48 MHz CPU, USB and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 448 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F078RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F078RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F078RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 128 Kbytes Flash, 48 MHz CPU, USB and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F078VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F078VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F078VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 128 Kbytes Flash, 48 MHz CPU, USB and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">86</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F091CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F091CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F091CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">306</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F031F6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031F6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031F6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 20</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F031G4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031G4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031G4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 28 4x4x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">23</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F031G6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031G6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031G6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 28 4x4x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">23</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F031K4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031K4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F031K4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F038C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F038C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F038C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F038E6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F038E6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F038E6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 25L P 0.4 MM DIE 444</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F038F6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F038F6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F038F6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 20</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F038G6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F038G6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F038G6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 28 4x4x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">22</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F038K6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F038K6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F038K6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F042C4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042C4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042C4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 USB line MCU with 16 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F042C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F042F4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042F4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042F4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 USB line MCU with 16 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 20</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F042F6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042F6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042F6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 20</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F042G4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042G4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042G4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 USB line MCU with 16 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 28 4x4x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F042G6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042G6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042G6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 28 4x4x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F042K4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042K4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042K4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 USB line MCU with 16 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">28</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F042K6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042K6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042K6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">28</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F042T6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042T6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F042T6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 USB line MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 36L DIE 445 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">30</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F048C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F048C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F048C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F048G6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F048G6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F048G6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 28 4x4x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F048T6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F048T6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F048T6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 32 Kbytes Flash, 48 MHz CPU, USB, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 36L DIE 445 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">30</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F051C4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051C4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051C4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">39</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F051C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">39</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F051C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 64 Kbytes Flash, 48 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">39</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F051K4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051K4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051K4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 16 Kbytes Flash, 48 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F051K6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051K6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F051K6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 32 Kbytes Flash, 48 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F091CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F091CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F091CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,IR Timer,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">306</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F091RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F091RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F091RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">306</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F091RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F091RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F091RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 442 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">306</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F091VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F091VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F091VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 128 Kbytes Flash, 48 MHz CPU, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">88</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">306</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F091VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F091VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F091VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Access line MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">88</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">306</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F098CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F098CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F098CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">306</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F098RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F098RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F098RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 442 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">306</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F098VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F098VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F098VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream ARM Cortex-M0 Low-voltage line 1,8V MCU with 256 Kbytes Flash, 48 MHz CPU, CAN and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">306</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100C4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100C4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100C4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">358</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">358</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101RD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101RD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101RD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101RF">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101RF</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101RF</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">768</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101RG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101T4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101T4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101T4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VFQFPN 36 6x6x1-0</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">363</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101T6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101T6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101T6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VFQFPN 36 6x6x1-0</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">363</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101T8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101T8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101T8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VFQFPN 36 6x6x1-0</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">391</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101TB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101TB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101TB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VFQFPN 36 6x6x1-0</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">391</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101V8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 36 MHZ CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">391</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">391</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101VD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101VD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101VD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101VF">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101VF</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101VF</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,WLCSP 144L DIE 470 PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">768</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101VG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101ZC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101ZC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101ZC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101ZD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101ZD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101ZD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101ZE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101ZF">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101ZF</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101ZF</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">768</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-bit downcounter,2xWDG,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101ZG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F102C4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102C4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102C4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream USB Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 48 MHz CPU, USB FS</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.55</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">348</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F102C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream USB Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 48 MHz CPU, USB FS</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.55</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">348</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F102C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream USB Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 48 MHz CPU, USB FS</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">373</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F102CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream USB Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 48 MHz CPU, USB FS</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">373</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F102R4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102R4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102R4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream USB Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 48 MHz CPU, USB, FS</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.55</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">348</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F102R6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102R6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102R6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream USB Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 48 MHz CPU, USB FS</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.55</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">348</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">358</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">358</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100R4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100R4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100R4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">358</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100R6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100R6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100R6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">358</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">358</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">358</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.2</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">396</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100RD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100RD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100RD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.2</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">396</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 512 Kbytes, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.2</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">396</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100V8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">358</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">358</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream value line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.2</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">396</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100VD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100VD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100VD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.2</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">396</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.2</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">396</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100ZC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100ZC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100ZC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.2</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">396</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100ZD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100ZD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100ZD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.2</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">396</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F100ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100ZE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F100ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Value line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 24 MHz CPU, motor control and CEC functions</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HDMI CEC</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.2</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">396</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101C4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101C4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101C4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">363</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">363</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">363</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">363</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101R4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101R4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101R4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">363</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101R6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101R6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101R6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">363</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">391</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">391</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F101RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F101RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Access line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 36 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F102R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream USB Access line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 48 MHz CPU, USB FS</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">373</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F102RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F102RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream USB Access line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 48 MHz CPU, USB FS</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">373</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103C4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103C4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103C4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.55</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.55</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">373</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">373</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103R4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103R4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103R4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.55</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103R6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103R6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103R6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 32 Kbytes Clash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.55</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">373</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">373</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F105VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F105VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F105VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Connectivity line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">393</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F107RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F107RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F107RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Connectivity line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, Ethernet MAC, CAN and USB 2.0 OTG</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">393</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F107RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F107RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F107RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Connectivity line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, Ethernet MAC, CAN and USB 2.0 OTG</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">393</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F107VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F107VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F107VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Connectivity line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, Ethernet MAC, CAN and USB 2.0 OTG</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">393</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F107VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F107VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F107VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Connectivity line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, Ethernet MAC, CAN and USB 2.0 OTG</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ethernet</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">393</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F301C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F301C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F301C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F301C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F301C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F301C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,WLCSP 49L DIE 439 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F301K6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F301K6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F301K6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">349</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F301K8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F301K8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F301K8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F301R6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F301R6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F301R6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F301R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F301R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F301R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,WLCSP 49L DIE 439 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302K6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302K6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302K6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302K8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302K8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302K8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">349</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302R6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302R6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302R6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302RD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302RD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302RD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">17</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,WLCSP 100L P 0.4 MM DIE 422</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,IR Timer,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">17</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302VD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302VD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302VD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">17</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">86</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,WLCSP 64</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103RD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103RD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103RD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,WLCSP 64</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,WLCSP 64</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103RF">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103RF</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103RF</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">768</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103RG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103T4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103T4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103T4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 16 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VFQFPN 36 6x6x1-0</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.55</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103T6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103T6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103T6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 32 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VFQFPN 36 6x6x1-0</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.55</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">373</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103T8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103T8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103T8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VFQFPN 36 6x6x1-0</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">373</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103TB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103TB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103TB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VFQFPN 36 6x6x1-0</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">373</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103V8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">373</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.7</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">373</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103VD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103VD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103VD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103VF">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103VF</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103VF</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 72MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">768</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103VG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103ZC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103ZC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103ZC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103ZD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103ZD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103ZD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 384 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103ZE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 512 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103ZF">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103ZF</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103ZF</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 768 Kbytes Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">768</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F103ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103ZG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F103ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Performance line, ARM Cortex-M3 MCU with 1 Mbyte Flash, 72 MHz CPU, motor control, USB and CAN</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LFBGA 144 10x10x1.7,LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F105R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F105R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F105R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Connectivity line, ARM Cortex-M3 with 64 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">393</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F105RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F105RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F105RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Connectivity line, ARM Cortex-M3 MCU with 128 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">393</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F105RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F105RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F105RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Connectivity line, ARM Cortex-M3 MCU with 256 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">393</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F105V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F105V8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F105V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Connectivity line, ARM Cortex-M3 MCU with 64 Kbytes Flash, 72 MHz CPU, CAN, USB 2.0 OTG</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">393</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F105VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F105VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F105VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Connectivity line, ARM Cortex-M3 MCU with 128 Kbytes Flash,72 MHz CPU, CAN, USB 2.0 OTG</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LFBGA 100 10x10x1.7,LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">393</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">17</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">86</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302ZD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302ZD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302ZD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F302ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302ZE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F302ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,WLCSP 49L DIE 438 PITCH 0.5</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303K6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303K6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303K6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303K8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303K8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303K8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303R6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303R6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303R6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F373CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 KBytes Flash, 72 MHz CPU, MPU, 16-bit ADC comparators</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">417</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F373R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">417</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F373RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">417</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F373RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 KBytes Flash, 72 MHz CPU, MPU, 16-bit ADC comparators</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">417</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F373V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373V8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">417</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F373VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 KBytes Flash, 72 MHz CPU, MPU, 16-bit ADC comparators</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">417</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F373VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 KBytes Flash, 72 MHz CPU, MPU, 16-bit ADC comparators</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">417</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F378CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F378CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F378CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">430</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F378RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F378RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F378RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,WLCSP 66L DIE 432 R 8X8 0.4 MM P</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">394</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F378VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F378VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F378VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 256 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5.9</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">430</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F398VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F398VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F398VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">86</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">22</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">22</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303RD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303RD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303RD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">22</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">22</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">450</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">39</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,WLCSP 100L P 0.4 MM DIE 422</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">39</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303VD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303VD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303VD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">39</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">86</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6,WLCSP 100L P 0.4MM DIE 446</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">39</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">86</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303ZD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303ZD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303ZD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F303ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303ZE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F303ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.5</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F318C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F318C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F318C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,WLCSP 49L DIE 439 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4.2</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">350</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F318K8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F318K8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F318K8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4.2</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">350</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F328C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F328C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F328C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6.8</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F334C4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334C4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334C4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F334C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick,hr timer (10x217ps)</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F334C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,WLCSP 49L DIE 438 PITCH 0.5</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,IR Timer,RTC,SysTick,hr timer (10x217ps)</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F334K4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334K4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334K4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F334K8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334K8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334K8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32L P 0.5 MM CHIP ON LEAD</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick,hr timer (10x217ps)</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F334R6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334R6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334R6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick,hr timer (10x217ps)</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F334R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F334R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick,hr timer (10x217ps)</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F358CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F358CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F358CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">368</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F358RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F358RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F358RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">368</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F358VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F358VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F358VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">86</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.95</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7.4</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">368</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F373C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 64 Kbytes Flash, 72 MHz CPU, MPU, 16-bit ADC, comparators</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">417</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32F373CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32F373CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mainstream Mixed signals MCUs ARM Cortex-M4 core with DSP and FPU, 128 KBytes Flash, 72MHz CPU, MPU, 16-bit ADC, comparators</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">417</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+
+</rdf:RDF>
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 @@
+<?xml version="1.0"?>
+<rdf:RDF xml:base="https://trygvis.io/owl/stm32/STM32%20Ultra%20Low%20Power%20MCUs.owl"
+ xmlns="https://trygvis.io/owl/stm32/STM32%20Ultra%20Low%20Power%20MCUs.owl#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+ xmlns:owl="http://www.w3.org/2002/07/owl#"
+ xmlns:owlr="http://www.lesfleursdunormal.fr/static/_downloads/owlready_ontology.owl#"
+ xmlns:shar="https://trygvis.io/owl/stm32/shared.owl#">
+
+<owl:Ontology rdf:about="https://trygvis.io/owl/stm32/STM32%20Ultra%20Low%20Power%20MCUs.owl"/>
+
+<owl:Class rdf:about="https://trygvis.io/owl/stm32/shared.owl#Chip">
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip</rdfs:label>
+</owl:Class>
+
+<owl:Class rdf:about="https://trygvis.io/owl/stm32/shared.owl#ChipLine">
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ChipLine</rdfs:label>
+</owl:Class>
+
+<owl:ObjectProperty rdf:about="https://trygvis.io/owl/stm32/shared.owl#HasChipLine">
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <rdfs:range rdf:resource="https://trygvis.io/owl/stm32/shared.owl#ChipLine"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chip_line</owlr:python_name>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Line</rdfs:label>
+</owl:ObjectProperty>
+
+<shar:ChipLine rdf:about="#STM32 Ultra Low Power MCUs">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32 Ultra Low Power MCUs</rdfs:label>
+</shar:ChipLine>
+
+<owl:DatatypeProperty rdf:about="#part-number">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Part Number</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">part-number</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#general-description">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has General Description</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">general-description</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#marketing-status">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Marketing Status</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">marketing-status</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#package">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Package</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">package</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#core">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Core</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">core</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#operating-frequency-mhz-processor-speed">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Operating Frequency (MHz) (Processor speed)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">operating-frequency-mhz-processor-speed</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#co-processor-type">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Co-Processor type</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">co-processor-type</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#co-processor-frequency-mhz-max">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Co-Processor frequency (MHz) max</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">co-processor-frequency-mhz-max</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#flash-size-kb-prog">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has FLASH Size (kB) (Prog)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flash-size-kb-prog</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#data-e2prom-b-nom">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Data E2PROM (B) nom</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">data-e2prom-b-nom</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#ram-size-kb">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has RAM Size (kB)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ram-size-kb</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#timers-16-bit-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Timers (16 bit) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">timers-16-bit-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#timers-32-bit-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Timers (32 bit) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">timers-32-bit-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#other-timer-functions">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Other timer functions</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">other-timer-functions</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#operating-temperature-oc-max">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Operating Temperature (oC) max</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">operating-temperature-oc-max</owlr:python_name>
+</owl:DatatypeProperty>
+
+<shar:Chip rdf:about="#STM32L011F3">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011F3</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011F3</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 20,UFQFPN 20 3x3x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L031G4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031G4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031G4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 28 4x4x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">23</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L031G6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031G6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031G6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 28 4x4x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">23</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L051R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L072CZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072CZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072CZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">EWLCSP 49L DIE 447 P 0.4 MM,LQFP 48 7x7x1.4,WLCSP 49L DIE 447 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L072KZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072KZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072KZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L462VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L462VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L462VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 kbytes Flash, USB Device, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L471ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471ZE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L476VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R5QG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5QG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5QG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, CHROM-ART</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L011D3">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011D3</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011D3</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 14</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.23</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L011D4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011D4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011D4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 14</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L011E3">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011E3</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011E3</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 25L DIE 457 P 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L011E4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011E4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011E4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 25L DIE 457 P 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L011F4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011F4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011F4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 20,UFQFPN 20 3x3x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L011G3">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011G3</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011G3</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 28 4x4x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L011G4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011G4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011G4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 28 4x4x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L011K3">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011K3</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011K3</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 8-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">28</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L011K4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011K4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L011K4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">28</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L021D4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L021D4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L021D4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 14</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.23</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L021F4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L021F4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L021F4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 20 3x3x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.23</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L021G4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L021G4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L021G4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 28 4x4x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.23</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L021K4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L021K4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L021K4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">28</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.23</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L031C4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031C4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031C4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L031C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<owl:DatatypeProperty rdf:about="#ad-converters-12-bit-channels">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has A/D Converters (12-bit channels)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ad-converters-12-bit-channels</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#ad-converters-16-bit-channels">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has A/D Converters (16-bit channels)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ad-converters-16-bit-channels</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#da-converters--12-bit-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has D/A Converters (12 bit) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">da-converters--12-bit-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#comparator">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Comparator</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">comparator</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#ios-high-current">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has I/Os (High Current)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ios-high-current</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#display-controller">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Display controller</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">display-controller</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#can--typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has CAN typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">can--typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#can-fd-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has CAN FD typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">can-fd-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#i2c-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has I2C typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">i2c-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#spi-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has SPI typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">spi-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#i2s-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has I2S typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">i2s-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#usb-type">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has USB Type</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">usb-type</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#usart--typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has USART typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">usart--typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#uart-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has UART typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">uart-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#connectivity-supported">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Connectivity supported</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">connectivity-supported</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#integrated-op-amps">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Integrated op-amps</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">integrated-op-amps</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#additional-serial-interfaces">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Additional Serial Interfaces</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">additional-serial-interfaces</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#parallel-interfaces">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Parallel Interfaces</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">parallel-interfaces</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#crypto-hash">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Crypto-HASH</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">crypto-hash</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#trng-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has TRNG typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">trng-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#smps">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has SMPS</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">smps</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-voltage-v-min">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Voltage (V) min</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply-voltage-v-min</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-voltage-v-max">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Voltage (V) max</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply-voltage-v-max</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-current-ua-lowest-power-mode-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Current (uA) (Lowest power mode) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply-current-ua-lowest-power-mode-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-current-ua-run-mode-per-mhz-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Current (uA) (Run mode (per Mhz)) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply-current-ua-run-mode-per-mhz-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#operating-temperature-oc-min">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Operating Temperature (oC) min</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">operating-temperature-oc-min</owlr:python_name>
+</owl:DatatypeProperty>
+
+<shar:Chip rdf:about="#STM32L031E4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031E4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031E4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 25L DIE 425</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L031E6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031E6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031E6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 25L DIE 425</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L031F4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031F4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031F4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 20</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L031F6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031F6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031F6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 20</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L031K4">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031K4</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031K4</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 16-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L031K6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031K6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L031K6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L041C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L041C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L041C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L041E6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L041E6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L041E6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 25L DIE 425</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L041F6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L041F6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L041F6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TSSOP 20</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L041G6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L041G6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L041G6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 28 4x4x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">23</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L071K8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071K8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071K8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3072</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L071KB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071KB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071KB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L071KZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071KZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071KZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L071RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L071RZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071RZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071RZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L071V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071V8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3072</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L071VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L071VZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071VZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071VZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L072CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,WLCSP 49L DIE 447 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L072KB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072KB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072KB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L072RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2,UFBGA 5X5X0.6 64L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L072RZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072RZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072RZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2,UFBGA 5X5X0.6 64L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L072V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072V8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3072</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L072VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L072VZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072VZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L072VZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L073CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L073CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L073CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x18</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L073CZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L073CZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L073CZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x18</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L073RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L073RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L073RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L073RZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L073RZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L073RZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192 Kbytes Flash, 32 MHz CPU, USB, LCD</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2,UFBGA 5X5X0.6 64L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L073V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L073V8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L073V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU, USB, LCD</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3072</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x52/8x48</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L073VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L073VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L073VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x52/8x48</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L073VZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L073VZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L073VZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x52/8x48</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L081CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L081CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L081CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L081CZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L081CZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L081CZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L081KZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L081KZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L081KZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L082CZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L082CZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L082CZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 49L DIE 447 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L041K6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L041K6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L041K6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.25</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L051C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L051C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L051K6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051K6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051K6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L051K8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051K8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051K8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L051R6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051R6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051R6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L051T6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051T6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051T6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 36L DIE 417 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">29</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L051T8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051T8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L051T8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 36L DIE 417 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">29</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L052C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L052C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L052K6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052K6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052K6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L052K8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052K8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052K8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low power ARM Cortex-M0+ MCU with 64-Kbyte Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L052R6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052R6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052R6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L052R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L052T6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052T6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052T6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low power ARM Cortex-M0+ MCU with 32-Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 36L DIE 417 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">29</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L052T8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052T8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L052T8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">THIN WLCSP 36L DIE 417 P 0.4 MM,WLCSP 36L DIE 417 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">29</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L053C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L053C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L053C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB, LCD</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x18</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L053C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L053C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L053C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB, LCD</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x18</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L053R6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L053R6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L053R6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 32 Kbytes Flash, 32 MHz CPU, USB, LCD</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x31/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L053R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L053R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L053R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB, LCD</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x31/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L062K8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L062K8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L062K8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L063C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L063C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L063C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz CPU, USB, LCD, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x18</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L063R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L063R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L063R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64 Kbytes Flash, 32 MHz, USB, LCD, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x31/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L071C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3072</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L071CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,WLCSP 49L DIE 447 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L071CZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071CZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L071CZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192 Kbytes Flash, 32 MHz CPu</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,WLCSP 49L DIE 447 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L082KB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L082KB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L082KB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L082KZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L082KZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L082KZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 32 7x7x1.4,UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L083CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L083CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L083CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x18</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L083CZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L083CZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L083CZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x18</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L083RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L083RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L083RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L083RZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L083RZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L083RZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L083V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L083V8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L083V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 64-Kbytes Flash, 32 MHz CPU, USB, LCD, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3072</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x52/8x48</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L083VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L083VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L083VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 128-Kbytes Flash, 32 MHz CPU, USB, LCD, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x52/8x48</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L083VZ">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L083VZ</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L083VZ</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M0+ MCU with 192-Kbytes Flash, 32 MHz CPU, USB, LCD, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6144</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x52/8x48</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.29</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L100C6-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L100C6-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L100C6-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x16</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151ZD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151ZD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151ZD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12288</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">230</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151ZE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16384</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152C6-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152C6-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152C6-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x16</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152C8-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152C8-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152C8-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x16</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152CB-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152CB-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152CB-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x16</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x18</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152QC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152QC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152QC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">109</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152QD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152QD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152QD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12288</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">109</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">230</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152QE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152QE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152QE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16384</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">109</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152R6-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152R6-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152R6-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152R8-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152R8-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152R8-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152RB-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152RB-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152RB-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152RD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152RD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152RD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,WLCSP 64 BALLS DIE 436 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12288</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">230</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16384</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152UC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152UC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152UC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 63L (7X9) DIE 427 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">177</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152V8-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152V8-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152V8-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power Cortex-M3 MCU with 64 Kbytes Flash, RTC, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152VB-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152VB-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152VB-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power Cortex-M3 MCU with 128 Kbytes Flash, RTC, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152VD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152VD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152VD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12288</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">230</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152VD-X">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152VD-X</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152VD-X</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16384</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,WLCSP 104L DIE 437 P 0.4MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16384</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152ZC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152ZC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152ZC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152ZD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152ZD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152ZD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12288</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">230</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152ZE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16384</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L162QD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162QD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162QD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12288</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">109</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">230</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L100R8-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L100R8-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L100R8-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L100RB-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L100RB-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L100RB-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L100RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L100RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L100RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151C6-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151C6-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151C6-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151C8-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151C8-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151C8-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151CB-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151CB-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151CB-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151QC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151QC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151QC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">109</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151QD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151QD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151QD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12288</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">109</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">230</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151QE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151QE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151QE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16384</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">109</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151R6-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151R6-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151R6-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151R8-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151R8-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151R8-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151RB-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151RB-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151RB-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,WLCSP 64 BALLS DIE 436 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151RD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151RD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151RD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,WLCSP 64 BALLS DIE 436 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12288</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">230</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16384</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151UC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151UC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151UC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 2xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 63L (7X9) DIE 427 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151V8-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151V8-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151V8-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151VB-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151VB-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151VB-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151VD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151VD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151VD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12288</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">230</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151VD-X">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151VD-X</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151VD-X</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,WLCSP 104L DIE 437 P 0.4MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16384</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, MCD, USB, 2xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,WLCSP 104L DIE 437 P 0.4MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16384</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151ZC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151ZC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151ZC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L162RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L162RD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162RD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162RD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,WLCSP 64 BALLS DIE 436 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12288</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">230</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L162RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16384</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L162VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L162VD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162VD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162VD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12288</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">230</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L162VD-X">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162VD-X</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162VD-X</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 104L DIE 437 P 0.4MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16384</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L162VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,WLCSP 104L DIE 437 P 0.4MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16384</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L162ZD">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162ZD</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162ZD</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 384 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12288</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">230</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L162ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162ZE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 512 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16384</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L431CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L431CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L431CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L452RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L452RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L452RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB Device, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64,WLCSP 64L DIE 462 PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L452VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L452VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L452VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB Device, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L452VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L452VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L452VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB Device, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L462CE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L462CE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L462CE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 kbytes Flash, USB Device, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L462RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L462RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L462RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 kbytes Flash, USB Device, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 462 PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L471QE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471QE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471QE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">19</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">109</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L471QG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471QG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471QG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">19</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">109</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L471RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L471RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471RG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L471VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L471VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471VG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L471ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471ZG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L471ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L475RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L475RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L475RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L475RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L475RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L475RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L475RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L475RG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L475RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L475VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L475VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L475VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L475VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L475VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L475VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L475VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L475VG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L475VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L476JE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476JE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476JE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 72L DIE 415 PITCH 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">57</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L476JG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476JG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476JG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 72L DIE 415 PITCH 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">57</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L476ME">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476ME</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476ME</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 81L DIE 415 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">65</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x30</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L476MG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476MG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476MG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 81L DIE 415 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">65</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x30</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L476QE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476QE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476QE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">19</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">109</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L476QG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476QG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476QG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">19</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">109</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L476RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L476RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L431CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L431CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L431CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L431KB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L431KB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L431KB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L431KC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L431KC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L431KC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L431RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L431RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L431RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L431RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L431RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L431RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L431VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L431VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L431VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L432KB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L432KB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L432KB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L432KC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L432KC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L432KC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L433CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L433CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L433CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash, USB FS, LCD</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x19</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L433CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L433CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L433CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x19</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L433RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L433RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L433RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 128 Kbytes Flash, USB FS, LCD</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L433RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L433RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L433RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L433VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L433VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L433VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L442KC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L442KC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L442KC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 32 5x5x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L443CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L443CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L443CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB, AES-256</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,THIN WLCSP 49L 435 PITCH 0.4,UFQFPN 48 7x7x0.55,WLCSP 49L DIE 435 P 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x19</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L443RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L443RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L443RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB, AES-256</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 435 P 0.35 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L443VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L443VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L443VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L451CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L451CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L451CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L451CE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L451CE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L451CE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L451RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L451RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L451RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L451RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L451RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L451RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM,WLCSP 64L DIE 462 PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L451VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L451VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L451VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L451VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L451VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L451VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L452CC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L452CC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L452CC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB Device, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L452CE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L452CE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L452CE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB Device, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L452RC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L452RC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L452RC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, USB Device, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,UFBGA 5X5X0.6 64L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.01</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L476RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476RG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L476VC">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476VC</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476VC</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 256 Kbytes Flash, LCD, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L476VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476VG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L476ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476ZE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, LCD, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L476ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476ZG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L476ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FSMC,DFSDM,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L486JG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L486JG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L486JG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WLCSP 72L DIE 415 PITCH 0.4 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">57</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L486QG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L486QG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L486QG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">19</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">109</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L486RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L486RG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L486RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L486VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L486VG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L486VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L486ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L486ZG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L486ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, LCD, USB OTG, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R9AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R9AI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R9AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">131</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R9VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R9VG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R9VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">77</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R9VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R9VI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R9VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">77</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R9ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R9ZG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R9ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,WLCSP 144L DIE 470 PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R9ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R9ZI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R9ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,WLCSP 144L DIE 470 PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4S5AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S5AI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S5AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART, AES-256, HASH</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4S5QI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S5QI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S5QI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART, AES-256, HASH</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4S5VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S5VI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S5VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART, AES-256, HASH</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4S5ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S5ZI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S5ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART, AES-256, HASH</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,WLCSP 144L DIE 470 PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4S7AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S7AI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S7AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, AES-256, HASH</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4S7VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S7VI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S7VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, AES-256, HASH</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4S7ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S7ZI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S7ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT, AES-256, HASH</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4S9AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S9AI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S9AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">131</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4S9VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S9VI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S9VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">77</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4S9ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S9ZI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4S9ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,UFBGA 10X10 144L P 0.8 MM,WLCSP 144L DIE 470 PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MIPI DSI</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L100C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L100C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L100C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x18</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L100R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L100R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L100R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L100RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L100RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L100RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power 32-bit Value Line ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,24-bit down counter,RTC</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.8</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151R6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151R6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151R6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151RC-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151RC-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151RC-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151V8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L151VC-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151VC-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L151VC-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L496AE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496AE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496AE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">136</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L496AG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496AG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496AG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">136</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L496QE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496QE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496QE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">19</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L496QG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496QG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496QG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">19</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L496RE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496RE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496RE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L496RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496RG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L496VE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496VE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496VE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L496VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496VG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,WLCSP 100L PITCH 0.4 DIE 461</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L496ZE">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496ZE</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496ZE</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 512 Kbytes Flash, USB OTG, LCD, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L496ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496ZG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L496ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4A6AG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4A6AG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4A6AG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">136</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4A6QG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4A6QG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4A6QG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">19</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4A6RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4A6RG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4A6RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU Arm Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4A6VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4A6VG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4A6VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,WLCSP 100L PITCH 0.4 DIE 461</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4A6ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4A6ZG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4A6ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 80 MHz with 1 Mbyte Flash, USB OTG, LCD, AES-256, DFSDM</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,Quad SPI,SDIO</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES,SHA</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.03</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R5AG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5AG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5AG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, CHROM-ART</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R5AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5AI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R5QI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5QI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5QI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 132L P 0.5 R 12X12</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">External</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R5VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5VG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, CHROM-ART</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R5VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5VI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R5ZG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5ZG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5ZG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, CHROM-ART</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,WLCSP 144L DIE 470 PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R5ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5ZI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R5ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, CHROM-ART</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4,WLCSP 144L DIE 470 PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R7AI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R7AI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R7AI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R7VI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R7VI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R7VI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R7ZI">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R7ZI</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R7ZI</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 2048 kbytes Flash, USB OTG, DFSDM, LCD-TFT</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 144 20x20x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2048</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DFSDM,FMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L4R9AG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R9AG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L4R9AG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power with FPU ARM Cortex-M4 MCU 120 MHz with 1024 kbytes Flash, USB OTG, DFSDM, LCD-TFT, MIPI DSI</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Active</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFBGA 7X7X0.6 169L P 0.5 MM</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">131</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB OTG FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Camera IF,DFSDM,FMC,SD/MMC</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.02</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152C6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152C6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152C6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x18</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152C8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152C8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152C8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x16</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152CB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152CB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152CB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 48 7x7x1.4,UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x18</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152R6">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152R6</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152R6</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 32 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152R8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152R8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152R8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 64 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152RB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152RB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152RB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 128 Kbytes Flash, 32 MHz CPU, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4,TFBGA 64 5x5x1.2</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152RC-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152RC-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152RC-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152V8">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152V8</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152V8</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power Cortex-M3 MCU with 64 Kbytes Flash, RTC, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152VB">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152VB</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152VB</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power Cortex-M3 MCU with 128 Kbytes Flash, RTC, LCD, USB</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4,UFBGA 100 7x7x0.6</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4096</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L152VC-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152VC-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L152VC-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 3xOp-amp</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2 x WDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L162RC-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162RC-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162RC-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 64 10x10x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x32/8x28</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32L162VC-A">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162VC-A</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32L162VC-A</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ultra-low-power ARM Cortex-M3 MCU with 256 Kbytes Flash, 32 MHz CPU, LCD, USB, 2xOp-amp, AES</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NRND</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LQFP 100 14x14x1.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M3</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8192</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB Device</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.65</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.3</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+
+</rdf:RDF>
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 @@
+<?xml version="1.0"?>
+<rdf:RDF xml:base="https://trygvis.io/owl/stm32/STM32%20Wireless%20MCUs.owl"
+ xmlns="https://trygvis.io/owl/stm32/STM32%20Wireless%20MCUs.owl#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+ xmlns:owl="http://www.w3.org/2002/07/owl#"
+ xmlns:owlr="http://www.lesfleursdunormal.fr/static/_downloads/owlready_ontology.owl#"
+ xmlns:shar="https://trygvis.io/owl/stm32/shared.owl#">
+
+<owl:DatatypeProperty rdf:about="#marketing-status">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Marketing Status</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">marketing-status</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#package">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Package</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">package</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#core">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Core</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">core</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#operating-frequency-mhz-processor-speed">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Operating Frequency (MHz) (Processor speed)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">operating-frequency-mhz-processor-speed</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#co-processor-type">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Co-Processor type</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">co-processor-type</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#co-processor-frequency-mhz-max">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Co-Processor frequency (MHz) max</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">co-processor-frequency-mhz-max</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#flash-size-kb-prog">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has FLASH Size (kB) (Prog)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flash-size-kb-prog</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#data-e2prom-b-nom">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Data E2PROM (B) nom</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">data-e2prom-b-nom</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#ram-size-kb">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has RAM Size (kB)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ram-size-kb</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#timers-16-bit-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Timers (16 bit) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">timers-16-bit-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#timers-32-bit-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Timers (32 bit) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">timers-32-bit-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#other-timer-functions">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Other timer functions</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">other-timer-functions</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#ad-converters-12-bit-channels">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has A/D Converters (12-bit channels)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ad-converters-12-bit-channels</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#ad-converters-16-bit-channels">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has A/D Converters (16-bit channels)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ad-converters-16-bit-channels</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#da-converters--12-bit-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has D/A Converters (12 bit) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">da-converters--12-bit-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#comparator">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Comparator</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">comparator</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#ios-high-current">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has I/Os (High Current)</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ios-high-current</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#display-controller">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Display controller</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">display-controller</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#can--typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has CAN typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">can--typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#can-fd-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has CAN FD typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">can-fd-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#i2c-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has I2C typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">i2c-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#spi-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has SPI typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">spi-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#i2s-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has I2S typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">i2s-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#usb-type">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has USB Type</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">usb-type</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#usart--typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has USART typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">usart--typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#uart-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has UART typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">uart-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:Ontology rdf:about="https://trygvis.io/owl/stm32/STM32%20Wireless%20MCUs.owl"/>
+
+<shar:ChipLine rdf:about="#STM32 Wireless MCUs">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32 Wireless MCUs</rdfs:label>
+</shar:ChipLine>
+
+<owl:DatatypeProperty rdf:about="#part-number">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Part Number</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">part-number</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#general-description">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has General Description</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">general-description</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#connectivity-supported">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Connectivity supported</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">connectivity-supported</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#integrated-op-amps">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Integrated op-amps</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">integrated-op-amps</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#additional-serial-interfaces">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Additional Serial Interfaces</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">additional-serial-interfaces</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#parallel-interfaces">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Parallel Interfaces</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">parallel-interfaces</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#crypto-hash">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Crypto-HASH</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">crypto-hash</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#trng-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has TRNG typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">trng-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#smps">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has SMPS</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">smps</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-voltage-v-min">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Voltage (V) min</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply-voltage-v-min</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-voltage-v-max">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Voltage (V) max</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply-voltage-v-max</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-current-ua-lowest-power-mode-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Current (uA) (Lowest power mode) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply-current-ua-lowest-power-mode-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#supply-current-ua-run-mode-per-mhz-typ">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Supply Current (uA) (Run mode (per Mhz)) typ</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supply-current-ua-run-mode-per-mhz-typ</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#operating-temperature-oc-min">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Operating Temperature (oC) min</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">operating-temperature-oc-min</owlr:python_name>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="#operating-temperature-oc-max">
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chip Has Operating Temperature (oC) max</rdfs:label>
+ <rdfs:domain rdf:resource="https://trygvis.io/owl/stm32/shared.owl#Chip"/>
+ <owlr:python_name rdf:datatype="http://www.w3.org/2001/XMLSchema#string">operating-temperature-oc-max</owlr:python_name>
+</owl:DatatypeProperty>
+
+<shar:Chip rdf:about="#STM32WB55CG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32WB55CG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32WB55CG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Preview</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UFQFPN 48 7x7x0.55</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,PWM,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">29</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.4GHz,802.15.4,BLE,Thread/OpenThread,ZigBee</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32WB55RG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32WB55RG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32WB55RG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Preview</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VFQFPN 8X8X1.0 68L PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,PWM,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.4GHz,802.15.4,BLE,Thread/OpenThread,ZigBee</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105,85</operating-temperature-oc-max>
+</shar:Chip>
+
+<shar:Chip rdf:about="#STM32WB55VG">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
+ <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32WB55VG</rdfs:label>
+ <part-number rdf:datatype="http://www.w3.org/2001/XMLSchema#string">STM32WB55VG</part-number>
+ <general-description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</general-description>
+ <marketing-status rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Preview</marketing-status>
+ <package rdf:datatype="http://www.w3.org/2001/XMLSchema#string">THIN WLCSP 100 DIE 495 P0.4,WLCSP 100L DIE 495 PITCH 0.4</package>
+ <core rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M4</core>
+ <operating-frequency-mhz-processor-speed rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</operating-frequency-mhz-processor-speed>
+ <co-processor-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arm Cortex-M0+</co-processor-type>
+ <co-processor-frequency-mhz-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</co-processor-frequency-mhz-max>
+ <flash-size-kb-prog rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024</flash-size-kb-prog>
+ <data-e2prom-b-nom rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</data-e2prom-b-nom>
+ <ram-size-kb rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</ram-size-kb>
+ <timers-16-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</timers-16-bit-typ>
+ <timers-32-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</timers-32-bit-typ>
+ <other-timer-functions rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2xWDG,PWM,RTC,SysTick</other-timer-functions>
+ <ad-converters-12-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</ad-converters-12-bit-channels>
+ <ad-converters-16-bit-channels rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</ad-converters-16-bit-channels>
+ <da-converters--12-bit-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</da-converters--12-bit-typ>
+ <comparator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</comparator>
+ <ios-high-current rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</ios-high-current>
+ <display-controller rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCD 4x44/8x40</display-controller>
+ <can--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can--typ>
+ <can-fd-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</can-fd-typ>
+ <i2c-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</i2c-typ>
+ <spi-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</spi-typ>
+ <i2s-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</i2s-typ>
+ <usb-type rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USB FS</usb-type>
+ <usart--typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</usart--typ>
+ <uart-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1</uart-typ>
+ <connectivity-supported rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2.4GHz,802.15.4,BLE,Thread/OpenThread,ZigBee</connectivity-supported>
+ <integrated-op-amps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</integrated-op-amps>
+ <additional-serial-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SAI</additional-serial-interfaces>
+ <parallel-interfaces rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quad SPI</parallel-interfaces>
+ <crypto-hash rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AES</crypto-hash>
+ <trng-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">true</trng-typ>
+ <smps rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-</smps>
+ <supply-voltage-v-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.71</supply-voltage-v-min>
+ <supply-voltage-v-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.6</supply-voltage-v-max>
+ <supply-current-ua-lowest-power-mode-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.6</supply-current-ua-lowest-power-mode-typ>
+ <supply-current-ua-run-mode-per-mhz-typ rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</supply-current-ua-run-mode-per-mhz-typ>
+ <operating-temperature-oc-min rdf:datatype="http://www.w3.org/2001/XMLSchema#string">-40</operating-temperature-oc-min>
+ <operating-temperature-oc-max rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</operating-temperature-oc-max>
+</shar:Chip>
+
+
+</rdf:RDF>
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 : <http://org.jena.rules.tutorial#> .
+@prefix : <https://trygvis.io/owl/stm32/STM32%20High%20Performance%20MCUs.owl#>
+
+[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)
+]