← スキル一覧に戻る

flipper-debug
by joseguzman1337
🐬 Feature-rich, stable and customizable Flipper Firmware
⭐ 2🍴 1📅 2026年1月21日
SKILL.md
name: flipper-debug description: Debug Flipper Zero applications and firmware issues metadata: short-description: Troubleshoot and debug Flipper Zero development issues
Flipper Debug
Debug Flipper Zero applications and firmware issues using available tools and techniques.
Context
- Flipper Zero runs on STM32WB55 microcontroller
- Uses FreeRTOS operating system
- Limited debugging capabilities compared to desktop development
- Serial console available via CLI
Debugging Tools
-
Serial CLI:
- Connect via
scripts/serial_cli.py - Use
logcommand to view system logs freecommand shows memory usagepsshows running processes
- Connect via
-
Log System:
FURI_LOG_E(TAG, "Error message"); FURI_LOG_W(TAG, "Warning message"); FURI_LOG_I(TAG, "Info message"); FURI_LOG_D(TAG, "Debug message"); -
Memory Debugging:
- Use
memmgr_heap_printf_free_blocks()to check heap - Monitor stack usage with
furi_thread_get_stack_space() - Check for memory leaks with allocation tracking
- Use
Common Issues and Solutions
-
App Crashes:
- Check for null pointer dereferences
- Verify proper memory allocation/deallocation
- Ensure GUI elements are properly cleaned up
- Check stack overflow (increase stack_size in application.fam)
-
GUI Issues:
- Verify view_dispatcher is properly configured
- Check scene transitions and cleanup
- Ensure proper event handling
- Validate input parameters
-
Hardware Issues:
- Check GPIO pin configurations
- Verify SPI/I2C initialization
- Test with known working hardware
- Use oscilloscope for signal analysis
Debugging Process
- Reproduce the issue consistently
- Add logging at key points
- Check memory usage and leaks
- Use CLI tools for system state
- Test with minimal code to isolate problem
- Review similar working code in codebase
Hardware Debugging
- Use SWD debugger with OpenOCD
- ST-Link or Black Magic Probe supported
- GDB debugging available with proper setup
- Check
scripts/debug/for configuration files
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です