一键导入
format
Format airspy-fmradion sources with clang-format and cmake-format. Use after editing C++ sources or CMakeLists.txt, and before committing code changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Format airspy-fmradion sources with clang-format and cmake-format. Use after editing C++ sources or CMakeLists.txt, and before committing code changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Architecture of airspy-fmradion — signal flow from SDR source to audio output, key type aliases, the Source abstraction, and the FM decoder pipeline. Use when reading or modifying the DSP chain, sources, decoders, buffers, or audio output.
Build airspy-fmradion with CMake — full clean build, incremental rebuild, optimization flags, optional MP3 feature, and CMake-fetched dependencies. Use when compiling the project, editing CMakeLists.txt, or investigating build errors.
Commit message convention for airspy-fmradion. Use when writing a git commit message for this repository.
| name | format |
| description | Format airspy-fmradion sources with clang-format and cmake-format. Use after editing C++ sources or CMakeLists.txt, and before committing code changes. |
# Format C++ sources
clang-format -i main.cpp include/*.h sfmbase/*.cpp
# Format CMakeLists.txt
cmake-format -i CMakeLists.txt
The .clang-format file defines the style (LLVM base, C++20, 80-column
limit, 2-space indent, no tabs). The .cmake-format.py file defines CMake
style.