# hil_rt_3 **Repository Path**: imzack/hil_rt_3 ## Basic Information - **Project Name**: hil_rt_3 - **Description**: 第三次开发HIL系统 - **Primary Language**: NodeJS - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-04 - **Last Updated**: 2026-03-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # HIL 测试软件 HIL(Hardware-in-the-Loop)测试软件项目,包含上位机与仿真引擎。 ## 技术栈 ### 上位机 (app/) - Electron 28 - React 18 + TypeScript - Vite 构建 - Ant Design、ReactFlow、ECharts、Zustand ### 仿真引擎 (engine/) - Python 3.10+ - asyncio、websockets、numpy ## 目录结构 ``` hil_rt_3/ ├── app/ # Electron + React 上位机 ├── engine/ # Python 仿真引擎 └── shared/ # 共享协议定义 ``` ## 启动说明 ### 上位机 ```bash cd app && npm install && npm run dev ``` 启动后打开 Electron 窗口,左侧导航可切换:信号监控、测试用例、测试报告。 ### 仿真引擎 ```bash cd engine && pip install -r requirements.txt && python main.py ``` WebSocket 服务监听 `ws://localhost:8765`,详见 [shared/protocol.md](shared/protocol.md)。