expo-ble模块测试demo 联调BLE模块 take 4 添加MTU设置和log

This commit is contained in:
Yudi Xiao
2025-12-11 12:23:26 +08:00
parent 1d3a7eba45
commit 1689fff721
3 changed files with 21 additions and 2 deletions

View File

@@ -2,10 +2,26 @@
安装 bun https://bun.com/docs/installation#windows
```bash
```powershell
powershell -c "irm bun.sh/install.ps1|iex"
```
检查bun是否正确安装
```powershell
& "$env:USERPROFILE\.bun\bin\bun" --version
```
添加bun到系统路径
```powershell
[System.Environment]::SetEnvironmentVariable(
"Path",
[System.Environment]::GetEnvironmentVariable("Path", "User") + ";$env:USERPROFILE\.bun\bin",
[System.EnvironmentVariableTarget]::User
)
```
安装项目依赖
```bash