build_m33
Compile the M33 core for XR875 projects by executing the required build commands: lunch_rtos 35, m clean, and m.
Instructions
Build the M33 core (lunch_rtos 35 && m clean && m).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/xr875_build/server.py:36-39 (handler)The `build_m33` tool handler, registered with `@mcp.tool()`, which executes the M33 core build commands.
@mcp.tool() def build_m33(): """Build the M33 core (lunch_rtos 35 && m clean && m).""" return run_build_command("source tools/scripts/envsetup.sh && lunch_rtos 34 && lunch_rtos 35 && m clean && m")