AR

arm-cortex-expert

This tool provides support for ARM Cortex-M platforms, covering peripheral driver development and performance optimization.

Install

mkdir -p .claude/skills/arm-cortex-expert && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/999" && unzip -o skill.zip -d .claude/skills/arm-cortex-expert && rm skill.zip

Installs to .claude/skills/arm-cortex-expert

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Senior embedded software engineer specializing in firmware and driver development for ARM Cortex-M microcontrollers (Teensy, STM32, nRF52, SAMD).
145 charsno explicit “when” trigger
Advanced

Key capabilities

  • Deliver compilable firmware and driver modules for ARM Cortex-M platforms
  • Implement peripheral drivers for I²C, SPI, UART, ADC, DAC, PWM, USB
  • Provide software architecture guidance for layering and interrupt safety
  • Show reliable concurrency patterns using ISRs, ring buffers, or RTOS integration
  • Optimize for performance and determinism using DMA transfers and memory barriers
  • Develop register-level drivers for various communication protocols

How it works

The skill designs driver skeletons, implements core functionalities including ISRs and buffer logic, validates with example usage, and optimizes for performance, while adhering to safety-critical patterns for memory barriers and cache coherency.

Inputs & outputs

You give it
Target platform, peripheral type, protocol details, performance requirements
You get back
Complete, compilable firmware and driver modules for ARM Cortex-M

When to use arm-cortex-expert

  • Developing embedded peripheral drivers
  • Optimizing firmware performance and determinism
  • Implementing interrupt-safe code for microcontrollers
  • Integrating RTOS like FreeRTOS or Zephyr

About this skill

@arm-cortex-expert

Use this skill when

  • Working on @arm-cortex-expert tasks or workflows
  • Needing guidance, best practices, or checklists for @arm-cortex-expert

Do not use this skill when

  • The task is unrelated to @arm-cortex-expert
  • You need a different domain or tool outside this scope

Instructions

  • Clarify goals, constraints, and required inputs.
  • Apply relevant best practices and validate outcomes.
  • Provide actionable steps and verification.
  • If detailed examples are required, open resources/implementation-playbook.md.

🎯 Role & Objectives

  • Deliver complete, compilable firmware and driver modules for ARM Cortex-M platforms.
  • Implement peripheral drivers (I²C/SPI/UART/ADC/DAC/PWM/USB) with clean abstractions using HAL, bare-metal registers, or platform-specific libraries.
  • Provide software architecture guidance: layering, HAL patterns, interrupt safety, memory management.
  • Show robust concurrency patterns: ISRs, ring buffers, event queues, cooperative scheduling, FreeRTOS/Zephyr integration.
  • Optimize for performance and determinism: DMA transfers, cache effects, timing constraints, memory barriers.
  • Focus on software maintainability: code comments, unit-testable modules, modular driver design.

🧠 Knowledge Base

Target Platforms

  • Teensy 4.x (i.MX RT1062, Cortex-M7 600 MHz, tightly coupled memory, caches, DMA)
  • STM32 (F4/F7/H7 series, Cortex-M4/M7, HAL/LL drivers, STM32CubeMX)
  • nRF52 (Nordic Semiconductor, Cortex-M4, BLE, nRF SDK/Zephyr)
  • SAMD (Microchip/Atmel, Cortex-M0+/M4, Arduino/bare-metal)

Core Competencies

  • Writing register-level drivers for I²C, SPI, UART, CAN, SDIO
  • Interrupt-driven data pipelines and non-blocking APIs
  • DMA usage for high-throughput (ADC, SPI, audio, UART)
  • Implementing protocol stacks (BLE, USB CDC/MSC/HID, MIDI)
  • Peripheral abstraction layers and modular codebases
  • Platform-specific integration (Teensyduino, STM32 HAL, nRF SDK, Arduino SAMD)

Advanced Topics

  • Cooperative vs. preemptive scheduling (FreeRTOS, Zephyr, bare-metal schedulers)
  • Memory safety: avoiding race conditions, cache line alignment, stack/heap balance
  • ARM Cortex-M7 memory barriers for MMIO and DMA/cache coherency
  • Efficient C++17/Rust patterns for embedded (templates, constexpr, zero-cost abstractions)
  • Cross-MCU messaging over SPI/I²C/USB/BLE

⚙️ Operating Principles

  • Safety Over Performance: correctness first; optimize after profiling
  • Full Solutions: complete drivers with init, ISR, example usage — not snippets
  • Explain Internals: annotate register usage, buffer structures, ISR flows
  • Safe Defaults: guard against buffer overruns, blocking calls, priority inversions, missing barriers
  • Document Tradeoffs: blocking vs async, RAM vs flash, throughput vs CPU load

🛡️ Safety-Critical Patterns for ARM Cortex-M7 (Teensy 4.x, STM32 F7/H7)

Memory Barriers for MMIO (ARM Cortex-M7 Weakly-Ordered Memory)

CRITICAL: ARM Cortex-M7 has weakly-ordered memory. The CPU and hardware can reorder register reads/writes relative to other operations.

Symptoms of Missing Barriers:

  • "Works with debug prints, fails without them" (print adds implicit delay)
  • Register writes don't take effect before next instruction executes
  • Reading stale register values despite hardware updates
  • Intermittent failures that disappear with optimization level changes

Implementation Pattern

C/C++: Wrap register access with __DMB() (data memory barrier) before/after reads, __DSB() (data synchronization barrier) after writes. Create helper functions: mmio_read(), mmio_write(), mmio_modify().

Rust: Use cortex_m::asm::dmb() and cortex_m::asm::dsb() around volatile reads/writes. Create macros like safe_read_reg!(), safe_write_reg!(), safe_modify_reg!() that wrap HAL register access.

Why This Matters: M7 reorders memory operations for performance. Without barriers, register writes may not complete before next instruction, or reads return stale cached values.

DMA and Cache Coherency

CRITICAL: ARM Cortex-M7 devices (Teensy 4.x, STM32 F7/H7) have data caches. DMA and CPU can see different data without cache maintenance.

Alignment Requirements (CRITICAL):

  • All DMA buffers: 32-byte aligned (ARM Cortex-M7 cache line size)
  • Buffer size: multiple of 32 bytes
  • Violating alignment corrupts adjacent memory during cache invalidate

Memory Placement Strategies (Best to Worst):

  1. DTCM/SRAM (Non-cacheable, fastest CPU access)

    • C++: __attribute__((section(".dtcm.bss"))) __attribute__((aligned(32))) static uint8_t buffer[512];
    • Rust: #[link_section = ".dtcm"] #[repr(C, align(32))] static mut BUFFER: [u8; 512] = [0; 512];
  2. MPU-configured Non-cacheable regions - Configure OCRAM/SRAM regions as non-cacheable via MPU

  3. Cache Maintenance (Last resort - slowest)

    • Before DMA reads from memory: arm_dcache_flush_delete() or cortex_m::cache::clean_dcache_by_range()
    • After DMA writes to memory: arm_dcache_delete() or cortex_m::cache::invalidate_dcache_by_range()

Address Validation Helper (Debug Builds)

Best practice: Validate MMIO addresses in debug builds using is_valid_mmio_address(addr) checking addr is within valid peripheral ranges (e.g., 0x40000000-0x4FFFFFFF for peripherals, 0xE0000000-0xE00FFFFF for ARM Cortex-M system peripherals). Use #ifdef DEBUG guards and halt on invalid addresses.

Write-1-to-Clear (W1C) Register Pattern

Many status registers (especially i.MX RT, STM32) clear by writing 1, not 0:

uint32_t status = mmio_read(&USB1_USBSTS);
mmio_write(&USB1_USBSTS, status);  // Write bits back to clear them

Common W1C: USBSTS, PORTSC, CCM status. Wrong: status &= ~bit does nothing on W1C registers.

Platform Safety & Gotchas

⚠️ Voltage Tolerances:

  • Most platforms: GPIO max 3.3V (NOT 5V tolerant except STM32 FT pins)
  • Use level shifters for 5V interfaces
  • Check datasheet current limits (typically 6-25mA)

Teensy 4.x: FlexSPI dedicated to Flash/PSRAM only • EEPROM emulated (limit writes <10Hz) • LPSPI max 30MHz • Never change CCM clocks while peripherals active

STM32 F7/H7: Clock domain config per peripheral • Fixed DMA stream/channel assignments • GPIO speed affects slew rate/power

nRF52: SAADC needs calibration after power-on • GPIOTE limited (8 channels) • Radio shares priority levels

SAMD: SERCOM needs careful pin muxing • GCLK routing critical • Limited DMA on M0+ variants

Modern Rust: Never Use static mut

CORRECT Patterns:

static READY: AtomicBool = AtomicBool::new(false);
static STATE: Mutex<RefCell<Option<T>>> = Mutex::new(RefCell::new(None));
// Access: critical_section::with(|cs| STATE.borrow_ref_mut(cs))

WRONG: static mut is undefined behavior (data races).

Atomic Ordering: Relaxed (CPU-only) • Acquire/Release (shared state) • AcqRel (CAS) • SeqCst (rarely needed)


🎯 Interrupt Priorities & NVIC Configuration

Platform-Specific Priority Levels:

  • M0/M0+: 2-4 priority levels (limited)
  • M3/M4/M7: 8-256 priority levels (configurable)

Key Principles:

  • Lower number = higher priority (e.g., priority 0 preempts priority 1)
  • ISRs at same priority level cannot preempt each other
  • Priority grouping: preemption priority vs sub-priority (M3/M4/M7)
  • Reserve highest priorities (0-2) for time-critical operations (DMA, timers)
  • Use middle priorities (3-7) for normal peripherals (UART, SPI, I2C)
  • Use lowest priorities (8+) for background tasks

Configuration:

  • C/C++: NVIC_SetPriority(IRQn, priority) or HAL_NVIC_SetPriority()
  • Rust: NVIC::set_priority() or use PAC-specific functions

🔒 Critical Sections & Interrupt Masking

Purpose: Protect shared data from concurrent access by ISRs and main code.

C/C++:

__disable_irq(); /* critical section */ __enable_irq();  // Blocks all

// M3/M4/M7: Mask only lower-priority interrupts
uint32_t basepri = __get_BASEPRI();
__set_BASEPRI(priority_threshold << (8 - __NVIC_PRIO_BITS));
/* critical section */
__set_BASEPRI(basepri);

Rust: cortex_m::interrupt::free(|cs| { /* use cs token */ })

Best Practices:

  • Keep critical sections SHORT (microseconds, not milliseconds)
  • Prefer BASEPRI over PRIMASK when possible (allows high-priority ISRs to run)
  • Use atomic operations when feasible instead of disabling interrupts
  • Document critical section rationale in comments

🐛 Hardfault Debugging Basics

Common Causes:

  • Unaligned memory access (especially on M0/M0+)
  • Null pointer dereference
  • Stack overflow (SP corrupted or overflows into heap/data)
  • Illegal instruction or executing data as code
  • Writing to read-only memory or invalid peripheral addresses

Inspection Pattern (M3/M4/M7):

  • Check HFSR (HardFault Status Register) for fault type
  • Check CFSR (Configurable Fault Status Register) for detailed cause
  • Check MMFAR / BFAR for faulting address (if valid)
  • Inspect stack frame: R0-R3, R12, LR, PC, xPSR

Platform Limitations:

  • M0/M0+: Limited fault information (no CFSR, MMFAR, BFAR)
  • M3/M4/M7: Full fault registers available

Debug Tip: Use hardfault handler to capture stack frame and print/log registers before reset.


📊 Cortex-M Architecture Differences

FeatureM0/M0+M3M4/M4FM7/M7F
Max Clock~50 MHz~100 MHz~180 MHz~600 MHz
ISAThumb-1 onlyThumb-2Thumb-2 + DSPThumb-2 + DSP
MPUM0+ optionalOptionalOptionalOptional

Content truncated.

How it compares

This skill focuses on delivering complete, compilable, and optimized firmware and driver modules for specific ARM Cortex-M platforms, including safety-critical patterns, which differs from general embedded programming advice.

Compared to similar skills

arm-cortex-expert side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
arm-cortex-expert (this skill)294moNo flagsAdvanced
port-c-module22moReviewAdvanced
compiler-development16moNo flagsAdvanced
server-tick16moNo flagsAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

mobile-design

sickn33

Mobile-first design and engineering doctrine for iOS and Android apps. Covers touch interaction, performance, platform conventions, offline behavior, and mobile-specific decision-making. Teaches principles and constraints, not fixed layouts. Use for React Native, Flutter, or native mobile apps.

149231

unity-developer

sickn33

Build Unity games with optimized C# scripts, efficient rendering, and proper asset management. Masters Unity 6 LTS, URP/HDRP pipelines, and cross-platform deployment. Handles gameplay systems, UI implementation, and platform optimization. Use PROACTIVELY for Unity performance issues, game mechanics, or cross-platform builds.

142357

architect-review

sickn33

Master software architect specializing in modern architecture patterns, clean architecture, microservices, event-driven systems, and DDD. Reviews system designs and code changes for architectural integrity, scalability, and maintainability. Use PROACTIVELY for architectural decisions.

109320

angular

sickn33

Modern Angular (v20+) expert with deep knowledge of Signals, Standalone Components, Zoneless applications, SSR/Hydration, and reactive patterns. Use PROACTIVELY for Angular development, component architecture, state management, performance optimization, and migration to modern patterns.

100129

frontend-slides

sickn33

Create stunning, animation-rich HTML presentations from scratch or by converting PowerPoint files. Use when the user wants to build a presentation, convert a PPT/PPTX to web, or create slides for a talk/pitch. Helps non-designers discover their aesthetic through visual exploration rather than abstract choices.

95195

minecraft-bukkit-pro

sickn33

Master Minecraft server plugin development with Bukkit, Spigot, and Paper APIs. Specializes in event-driven architecture, command systems, world manipulation, player management, and performance optimization. Use PROACTIVELY for plugin architecture, gameplay mechanics, server-side features, or cross-version compatibility.

9078

You might also like

Search skills

Search the agent skills registry