|
| 1 | +{ |
| 2 | + "nodes": { |
| 3 | + "mcu_newbie_env": { |
| 4 | + "type": "task", |
| 5 | + "title": "MCU · 新手 · 环境准备", |
| 6 | + "subtitle": "从零搭建 MCU 开发环境,确保能够编译并连接到开发板。", |
| 7 | + "tags": [ |
| 8 | + "MCU", |
| 9 | + "新手", |
| 10 | + "环境" |
| 11 | + ], |
| 12 | + "tasks": [ |
| 13 | + { |
| 14 | + "id": "mcu_newbie_env_read_overview", |
| 15 | + "title": "【重要】LibXR / CodeGenerator / XRobot 的分层与职责", |
| 16 | + "link": "https://xrobot-org.github.io/docs/intro", |
| 17 | + "estimateMinutes": 15, |
| 18 | + "descMd": "md/mcu_newbie_env/mcu_newbie_env_read_overview.md" |
| 19 | + }, |
| 20 | + { |
| 21 | + "id": "mcu_newbie_env_python_setup", |
| 22 | + "title": "安装 Python 工具:libxr / xrobot(可配合视频)", |
| 23 | + "link": "https://xrobot-org.github.io/docs/env_setup", |
| 24 | + "estimateMinutes": 10, |
| 25 | + "descMd": "md/mcu_newbie_env/mcu_newbie_env_python_setup.md" |
| 26 | + }, |
| 27 | + { |
| 28 | + "id": "mcu_newbie_env_board_debugger", |
| 29 | + "title": "准备并连接 STM32 开发板与调试器", |
| 30 | + "link": "https://xrobot-org.github.io/docs/debug", |
| 31 | + "estimateMinutes": 10, |
| 32 | + "descMd": "md/mcu_newbie_env/mcu_newbie_env_board_debugger.md" |
| 33 | + }, |
| 34 | + { |
| 35 | + "id": "mcu_newbie_env_stm32_vscode_gcc", |
| 36 | + "title": "在 Windows 上配置 STM32 + VS Code 开发环境", |
| 37 | + "link": "https://xrobot-org.github.io/docs/env_setup/env-setup-stm32", |
| 38 | + "estimateMinutes": 20, |
| 39 | + "descMd": "md/mcu_newbie_env/mcu_newbie_env_stm32_vscode_gcc.md" |
| 40 | + }, |
| 41 | + { |
| 42 | + "id": "mcu_newbie_code_gen_stm32", |
| 43 | + "title": "使用 xr_cubemx_cfg 生成 STM32 初始化代码", |
| 44 | + "link": "https://xrobot-org.github.io/docs/code_gen/stm32", |
| 45 | + "estimateMinutes": 15, |
| 46 | + "descMd": "md/mcu_newbie_env/mcu_newbie_code_gen_stm32.md" |
| 47 | + } |
| 48 | + ], |
| 49 | + "next": "mcu_newbie_basics" |
| 50 | + }, |
| 51 | + "mcu_newbie_basics": { |
| 52 | + "type": "task", |
| 53 | + "title": "MCU · 新手 · 第一个 LibXR 工程(点灯 + 串口)", |
| 54 | + "subtitle": "从自动生成工程,到真正点亮板子、打出第一行串口日志", |
| 55 | + "tags": [ |
| 56 | + "MCU", |
| 57 | + "新手", |
| 58 | + "LibXR", |
| 59 | + "STM32" |
| 60 | + ], |
| 61 | + "tasks": [ |
| 62 | + { |
| 63 | + "id": "mcu_newbie_basics_read_app_main", |
| 64 | + "title": "认识生成后的 LibXR 工程并接入 app_main()", |
| 65 | + "link": "https://xrobot-org.github.io/docs/code_gen/stm32", |
| 66 | + "estimateMinutes": 15, |
| 67 | + "descMd": "md/mcu_newbie_basics/mcu_newbie_basics_read_app_main.md" |
| 68 | + }, |
| 69 | + { |
| 70 | + "id": "mcu_newbie_basics_blink_led", |
| 71 | + "title": "在 app_main() 中用 LibXR GPIO 实现第一个 LED 闪烁", |
| 72 | + "link": "https://xrobot-org.github.io/docs/code_gen/stm32/stm32-code-gen-gpio", |
| 73 | + "estimateMinutes": 20, |
| 74 | + "descMd": "md/mcu_newbie_basics/mcu_newbie_basics_blink_led.md" |
| 75 | + }, |
| 76 | + { |
| 77 | + "id": "mcu_newbie_basics_button_exti_pwm", |
| 78 | + "title": "按键输入 → 外部中断 → PWM:在同一工程上逐步扩展", |
| 79 | + "link": "https://xrobot-org.github.io/docs/code_gen/stm32/stm32-code-gen-gpio", |
| 80 | + "estimateMinutes": 30, |
| 81 | + "descMd": "md/mcu_newbie_basics/mcu_newbie_basics_button_exti_pwm.md" |
| 82 | + }, |
| 83 | + { |
| 84 | + "id": "mcu_newbie_basics_uart_hw", |
| 85 | + "title": "硬件串口:用 LibXR 发送简单文本(初识 I/O 操作模型)", |
| 86 | + "link": "https://xrobot-org.github.io/docs/code_gen/stm32/stm32-code-gen-uart", |
| 87 | + "estimateMinutes": 30, |
| 88 | + "descMd": "md/mcu_newbie_basics/mcu_newbie_basics_uart_hw.md" |
| 89 | + }, |
| 90 | + { |
| 91 | + "id": "mcu_newbie_basics_review", |
| 92 | + "title": "小结:从 CubeMX 到 app_main 的完整链路和学习方法", |
| 93 | + "link": "https://xrobot-org.github.io/docs/code_gen/stm32", |
| 94 | + "estimateMinutes": 10, |
| 95 | + "descMd": "md/mcu_newbie_basics/mcu_newbie_basics_review.md" |
| 96 | + } |
| 97 | + ], |
| 98 | + "next": "mcu_newbie_periph" |
| 99 | + }, |
| 100 | + "mcu_newbie_periph": { |
| 101 | + "type": "task", |
| 102 | + "title": "MCU · 新手 · 外设与基础中间件(USB 串口 / 命令行 / 数据库)", |
| 103 | + "subtitle": "在已有 LibXR 工程上,扩展更多 I/O 能力和参数管理手段", |
| 104 | + "tags": [ |
| 105 | + "MCU", |
| 106 | + "新手", |
| 107 | + "LibXR", |
| 108 | + "STM32", |
| 109 | + "USB", |
| 110 | + "终端", |
| 111 | + "数据库" |
| 112 | + ], |
| 113 | + "tasks": [ |
| 114 | + { |
| 115 | + "id": "mcu_newbie_periph_overview", |
| 116 | + "title": "其他外设与基础中间件:能力与文档入口", |
| 117 | + "link": "https://xrobot-org.github.io/docs/code_gen/stm32", |
| 118 | + "estimateMinutes": 60, |
| 119 | + "descMd": "md/mcu_newbie_periph/mcu_newbie_periph_overview.md" |
| 120 | + }, |
| 121 | + { |
| 122 | + "id": "mcu_newbie_periph_usb_terminal", |
| 123 | + "title": "USB 串口与终端:通过配置启用 Terminal + RamFS 命令行", |
| 124 | + "link": "https://xrobot-org.github.io/docs/code_gen/stm32/stm32-code-gen-uart", |
| 125 | + "estimateMinutes": 25, |
| 126 | + "descMd": "md/mcu_newbie_periph/mcu_newbie_periph_usb_terminal.md" |
| 127 | + }, |
| 128 | + { |
| 129 | + "id": "mcu_newbie_periph_flash_db", |
| 130 | + "title": "使用 Flash 数据库存储简单配置参数", |
| 131 | + "link": "https://xrobot-org.github.io/docs/code_gen/stm32/stm32-code-gen-flash", |
| 132 | + "estimateMinutes": 25, |
| 133 | + "descMd": "md/mcu_newbie_periph/mcu_newbie_periph_flash_db.md" |
| 134 | + }, |
| 135 | + { |
| 136 | + "id": "mcu_newbie_periph_review", |
| 137 | + "title": "小结:外设封装 / USB 串口 / 终端 / Flash 数据库 的整体图", |
| 138 | + "link": "https://xrobot-org.github.io/docs/basic_coding/middleware", |
| 139 | + "estimateMinutes": 10, |
| 140 | + "descMd": "md/mcu_newbie_periph/mcu_newbie_periph_review.md" |
| 141 | + } |
| 142 | + ], |
| 143 | + "next": "os_api_basics" |
| 144 | + } |
| 145 | + } |
| 146 | +} |
0 commit comments