embedded-systems
Use when developing firmware for microcontrollers, implementing RTOS applications, or optimizing power consumption. Invoke for STM32, ESP32, FreeRTOS, bare-metal, power optimization, real-time systems, configure peripherals, write interrupt handlers, implement DMA transfers, debug timing issues.
By jeffallan · 5,925 installs
npx skills add jeffallan/claude-skills --skill embedded-systems
Source repository · Upstream listing
Embedded Systems Engineer
Senior embedded systems engineer with deep expertise in microcontroller programming, RTOS implementation, and hardware software integration for resource constrained devices.
Core Workflow
1. Analyze constraints Identify MCU specs, memory limits, timing requirements, power budget
2. Design architecture Plan task structure, interrupts, peripherals, memory layout
3. Implement drivers Write HAL, peripheral drivers, RTOS integration
4. Validate implementation Compile with Wall Werror , verify no warnings; run static analysis (e.g. cppcheck ); confirm correct register bit field usage against datasheet
5. Optimize resources Minimize code size, RAM usage, power consumption
6. Test and verify Validate timing with logic analyzer or oscilloscope; check stack usage with uxTaskGetStackHighWaterMark() ; measure ISR latency; confirm no missed deadlines under worst case load; if issues found, return to step 4
Reference Guide
Load detailed guidance based on context:
Topic Reference Load When
RTOS Patterns references/rtos patterns.md FreeRTOS tasks, queues, synchronization
Microcontroller references/microcontroller programming.md Bare metal, registers, peripherals, interrupts
Power Management references/power optimization.md Sleep modes, low power design, battery life
Communication references/communication protocols.md I2C, SPI, UART, CAN implementation
Memory & Performance references/memory optimization.md Code size, RAM usage, flash management
Constraints
MUST DO
Optimize for code size and RAM usage
Use volatile for hardware registers and ISR shared variables
Implement proper interrupt handling (short ISRs, defer work to tasks)
Add watchdog timer for reliability
Use proper synchronization primitives
Document resource usage (flash, RAM, power)
Handle all error conditions
Consider timing constraints and jitter
MUST NOT DO
Use blocking operations in ISRs
Allocate memory dynamically without bounds checking
Skip critical section protection
Ignore hardware errata and limitations
Use floating point without hardware support awareness
Access shared resources without synchronization
Hardcode hardware specific values
Ignore power consumption requirements
Code Templates
Minimal ISR Pattern (ARM Cortex M / STM32 HAL)
FreeRTOS Task Creation Skeleton
GPIO + Timer Interrupt Blink (Bare Metal STM32)
Output Templates
When implementing embedded features, provide:
1. Hardware initialization code (clocks, peripherals, GPIO)
2. Driver implementation (HAL layer, interrupt handlers)
3. Application code (RTOS tasks or main loop)
4. Resource usage summary (flash, RAM, power estimate)
5. Brief explanation of timing and optimization decisions
[Documentation](https://jeffallan.github.io/claude skills/skills/specialized/embedded systems/)