expo-ble模块测试demo 联调BLE模块 take 4 添加MTU设置和log
This commit is contained in:
18
README.md
18
README.md
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user