Agent skill

freertos-integration

Expert skill for FreeRTOS configuration, debugging, and optimization

Stars 514
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/a5c-ai/babysitter/tree/main/library/specializations/embedded-systems/skills/freertos-integration

SKILL.md

FreeRTOS Integration Skill

Overview

This skill provides expert-level support for FreeRTOS configuration, integration, debugging, and optimization. It covers all aspects of FreeRTOS development from initial setup to performance tuning.

Capabilities

Configuration Management

  • Generate optimal FreeRTOSConfig.h settings
  • Configure kernel tick rate and timing
  • Memory allocation scheme selection (heap_1 through heap_5)
  • Tickless idle mode configuration
  • Software timer configuration

Task Management

  • Task creation and priority analysis
  • Stack size calculation and optimization
  • Task timing analysis and WCET estimation
  • Priority assignment strategies
  • Task notification configuration

Synchronization Primitives

  • Queue configuration and sizing
  • Semaphore and mutex configuration
  • Event group setup
  • Stream and message buffer configuration
  • Deadlock prevention strategies

Debugging Support

  • Kernel-aware debugging interpretation
  • Stack overflow detection configuration
  • Runtime statistics collection
  • Task state monitoring
  • Trace facility configuration (Tracealyzer, SystemView)

Optimization

  • Stack usage analysis and right-sizing
  • Memory pool optimization
  • Context switch overhead reduction
  • Interrupt-safe API usage
  • Co-routine configuration (legacy)

Target Processes

  • rtos-integration.js - FreeRTOS integration and setup
  • real-time-performance-validation.js - RTOS performance testing
  • low-power-design.js - Tickless idle and power optimization
  • execution-speed-profiling.js - Task timing analysis

Dependencies

  • FreeRTOS kernel source
  • Kernel-aware debugger plugins (optional)
  • Trace tools (Tracealyzer, SystemView - optional)

Usage Context

This skill is invoked when tasks require:

  • Initial FreeRTOS project setup
  • Configuration optimization for specific requirements
  • Task design and priority assignment
  • Synchronization primitive selection
  • Performance analysis and tuning

Configuration Templates

Minimal Configuration

c
#define configUSE_PREEMPTION            1
#define configUSE_IDLE_HOOK             0
#define configUSE_TICK_HOOK             0
#define configCPU_CLOCK_HZ              SystemCoreClock
#define configTICK_RATE_HZ              1000
#define configMAX_PRIORITIES            5
#define configMINIMAL_STACK_SIZE        128
#define configTOTAL_HEAP_SIZE           (10 * 1024)

Low-Power Configuration

c
#define configUSE_TICKLESS_IDLE         1
#define configEXPECTED_IDLE_TIME_BEFORE_SLEEP  2
#define configPRE_SLEEP_PROCESSING(x)   preSleepProcessing(x)
#define configPOST_SLEEP_PROCESSING(x)  postSleepProcessing(x)

Expand your agent's capabilities with these related and highly-rated skills.

a5c-ai/babysitter

gsd-tools

Central utility skill for GSD operations. Provides config parsing, slug generation, timestamps, path operations, and orchestrates calls to other specialized skills. Acts as the unified entry point that the original gsd-tools.cjs provided via its lib/ modules (commands, config, core, init).

514 31
Explore
a5c-ai/babysitter

model-profile-resolution

Resolve model profile (quality/balanced/budget) at orchestration start and map agents to specific models. Enables cost/quality tradeoffs by selecting appropriate AI models for each agent role.

514 31
Explore
a5c-ai/babysitter

verification-suite

Plan structure validation, phase completeness checks, reference integrity verification, and artifact existence confirmation. Provides the structured verification layer ensuring GSD artifacts are well-formed and complete.

514 31
Explore
a5c-ai/babysitter

state-management

STATE.md reading, writing, and field-level updates. Provides cross-session state persistence via .planning/STATE.md with structured fields for current task, completed phases, blockers, decisions, and quick tasks.

514 31
Explore
a5c-ai/babysitter

git-integration

Git commit patterns, formats, and conventions for GSD methodology. Provides atomic commits per task, structured commit messages, planning file commits, branch management, and milestone tag operations.

514 31
Explore
a5c-ai/babysitter

frontmatter-parsing

YAML frontmatter parsing and manipulation for .planning/ documents. Provides read, write, update, query, and validation operations on frontmatter blocks in GSD markdown artifacts.

514 31
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results