S32K3XX S32K3xx Data Sheet Rev. 13 — 12 November 2025 Product data sheet Supports S32K344, S32K324, S32K314, S32K312, S32K311, S32K310, S32K341, S32K342, S32K322, S32K328, S32K338, S32K348, S32K356, S32K358, S32K388 and S32K389. Data is preliminary for S32K312 and S32K344 100LQFP only. This document includes key information in the file attached to it. See the attachment icon in the PDF window to see the list of attachments. • Operating characteristics • Memory and memory interfaces — Voltage range: 2.97 V to 5.5 V
Supports S32K344, S32K324, S32K314, S32K312, S32K311, S32K310, S32K341, S32K342, S32K322, S32K328, S32K338, S32K348, S32K356, S32K358, S32K388 and S32K389. Data is preliminary for S32K312 and S32K344 100LQFP only. This document includes key information in the file attached to it. See the attachment icon in the PDF window to see the list of attachments. • Operating characteristics — Voltage range: 2.97 V to 5.5 V — Ambient temperature range: -40 °C to 125 °C for all power modes • Arm™ Cortex-M7 core, 32-bit CPU — M7 supports up to 320 MHz frequency
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.github.michaelliv.characters | |
| import com.github.michaelliv.extensions.charSetUnion | |
| import com.github.michaelliv.extensions.openCharSetOf | |
| import com.github.michaelliv.extensions.toCharSet | |
| object Unicode { | |
| val EXCLAMATION_MARK = openCharSetOf( | |
| '!', // U+0021 EXCLAMATION MARK = factorial = bang |
This command searches for specific file types in the current directory and its subdirectories, extracts the code content (excluding comment lines), and copies the result to the clipboard.
find . -type f \( -name "*.<file_extension_1>" -o -name "*.<file_extension_2>" \) -print0 | xargs -0 -I {} sh -c 'echo {}; grep -v "^//" {}' | pbcopy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from datetime import datetime | |
| from typing import Optional, Callable | |
| import awswrangler | |
| import boto3 | |
| import pytz | |
| def copy_bucket_content( | |
| source_s3_uri: str, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from datetime import datetime | |
| from typing import Optional | |
| import boto3 | |
| import pytz | |
| def clear_bucket_by_min_date( | |
| bucket: str, | |
| prefix: Optional[str] = None, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import multiprocessing as mp | |
| from typing import Dict | |
| POISON = "POISON" | |
| LOCK = mp.Lock() | |
| class MultiprocessTermCounter: | |
| def __init__(self, num_workers: int = mp.cpu_count()): | |
| self.queue = mp.Queue() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def count_terms_line_by_line(): | |
| total_count: Counter = Counter() | |
| for line in open(DATA_PATH, encoding="utf8"): | |
| line_count = line.lower().split(' ') | |
| total_count += Counter(line_count) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def count_terms_in_memory(): | |
| total_count: Counter = Counter() | |
| with open(DATA_PATH, encoding="utf8") as f: | |
| # Read the file into memory | |
| lines = f.readlines() | |
| # Lower case each line, split by space | |
| for line in lines: | |
| terms = line.lower().split(' ') | |
| total_count += Counter(terms) |
NewerOlder