Skip to content

Commit 49644ad

Browse files
author
Ning Yu Xiang
committed
Merge branch 'updata_ci' into 'master'
fix: fix ci yml See merge request esp-components/esp-csi-ext!68
2 parents 29bf70c + a0f82e2 commit 49644ad

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ build_idf_v5.5:
5858

5959
push_master_to_github:
6060
stage: deploy
61+
tags:
62+
- deploy
6163
only:
6264
- master
6365
- /^release\/v/

examples/esp-radar/console_test/README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
| Supported Targets | ESP32 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-C61 | ESP32-S2 | ESP32-S3 |
2+
| ----------------- | ----- | -------- | -------- | -------- | --------- | -------- | -------- |
3+
14
# esp-csi console_test [[中文]](./README_cn.md)
25
----------
36
## 1 Introduction
@@ -8,7 +11,7 @@ This example provides a test platform for Wi-Fi CSI, which includes functions su
811
## 2 Equipment preparation
912
### 2.1 Equipment
1013
![equipment](./docs/_static/2.1_equipment.png)
11-
This example provides two working modes of `esp32-s3 development board` and `router` as Wi-Fi CSI contracting equipment. Using `esp32-s3 development board` as contracting equipment has better adjustment effect on contracting rate, RF size and channel. In both modes, `esp32-s3 development board` is used as the receiving device for Wi-Fi CSI.
14+
This example provides two working modes of `ESP32 DevKitC development board` and `router` as Wi-Fi CSI contracting equipment. Using `ESP32 DevKitC development board` as contracting equipment has better adjustment effect on contracting rate, RF size and channel. In both modes, `ESP32 DevKitC development board` is used as the receiving device for Wi-Fi CSI.
1215

1316
### 2.2 Compiler Environment
1417
The esp-idf version of the current project is [ESP-IDF Release v5.0.2](https://github.com/espressif/esp-idf/releases/tag/v5.0.2)
@@ -23,7 +26,7 @@ git submodule update --init --recursive
2326
2427
## 3 Starting program
2528
### 3.1 Send Wi-Fi CSI
26-
+ **Use esp32-s3 to send CSI**:Burn project `csi_send` to esp32-s3 development board
29+
+ **Use `ESP32 DevKitC` to send CSI**:Burn project `csi_send` to `ESP32 DevKitC development board`
2730

2831
```bash
2932
cd esp-csi/examples/get-started/csi_send
@@ -33,7 +36,7 @@ git submodule update --init --recursive
3336
+ **Use router to send CSI**:The router is not connected to other intelligent devices to avoid network congestion affecting the test effect.
3437

3538
### 3.2 Receive Wi-Fi CSI
36-
+ Burn project `console_test` to another esp32-s3 development board
39+
+ Burn project `console_test` to another `ESP32 DevKitC development board`
3740
```bash
3841
cd esp-csi/examples/console_test
3942
idf.py set-target esp32s3
@@ -47,7 +50,7 @@ git submodule update --init --recursive
4750
# Install python related dependencies
4851
pip install -r requirements.txt
4952
# Graphical display
50-
python esp_csi_tool.py -p /dev/ttyUSB1 -t LLTF
53+
python esp_csi_tool.py -p /dev/ttyUSB1
5154
```
5255
+ After running successfully, the following CSI data visualization interface is opened. The left side of the interface is the data display interface `Raw data`, and the right side is the data model interface `Raw model`:![csi tool](./docs/_static/3.3_csi_tool.png)
5356

examples/esp-radar/console_test/README_cn.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
| Supported Targets | ESP32 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-C61 | ESP32-S2 | ESP32-S3 |
2+
| ----------------- | ----- | -------- | -------- | -------- | --------- | -------- | -------- |
3+
14
# esp-csi console_test [[English]](./README.md)
25
----------
36
## 1 简介
@@ -9,7 +12,7 @@ console_test 是一款 Wi-Fi CSI 的测试平台,它包含了对 Wi-Fi CSI 的
912
## 2 环境准备
1013
### 2.1 设备
1114
![设备](./docs/_static/2.1_equipment.png)
12-
本例提供了 `esp32-s3 开发板``路由器` 两种设备模式作为 Wi-Fi CSI 发送设备。 其中使用 `esp32-s3 开发板` 作为发送设备,对发送频率、射频大小、信道的调整效果更好。两种模式下都用 esp32-s3 作为 Wi-Fi CSI 的接收设备。
15+
本例提供了 `ESP32 DevKitC 开发板``路由器` 两种设备模式作为 Wi-Fi CSI 发送设备。 其中使用 `ESP32 DevKitC 开发板` 作为发送设备,对发送频率、射频大小、信道的调整效果更好。两种模式下都用 `ESP32 DevKitC 开发板` 作为 Wi-Fi CSI 的接收设备。
1316

1417
### 2.2 编译环境
1518
使用的 esp-idf 版本为 [ESP-IDF Release v5.0.2](https://github.com/espressif/esp-idf/releases/tag/v5.0.2)
@@ -24,7 +27,7 @@ git submodule update --init --recursive
2427
2528
## 3 程序启动
2629
### 3.1 发送 Wi-Fi CSI
27-
+ **esp32-s3 发送 CSI**:烧录工程 `csi_send`esp32-s3
30+
+ ** `ESP32 DevKitC 开发板` 发送 CSI**:烧录工程 `csi_send` `ESP32 DevKitC 开发板`
2831
```bash
2932
cd esp-csi/examples/get-started/csi_send
3033
idf.py set-target esp32s3
@@ -33,7 +36,7 @@ git submodule update --init --recursive
3336
+ **路由器 发送 CSI**:此时路由器不连接其他智能设备,避免网络拥塞影响测试效果
3437

3538
### 3.2 接收 Wi-Fi CSI
36-
+ 烧录 `console_test` 到另一块 esp32-s3 开发板中
39+
+ 烧录 `console_test` 到另一块 `ESP32 DevKitC 开发板` 开发板中
3740
```bash
3841
cd esp-csi/examples/console_test
3942
idf.py set-target esp32s3
@@ -47,7 +50,7 @@ git submodule update --init --recursive
4750
# Install python related dependencies
4851
pip install -r requirements.txt
4952
# Graphical display
50-
python esp_csi_tool.py -p /dev/ttyUSB1 -t LLTF
53+
python esp_csi_tool.py -p /dev/ttyUSB1
5154
```
5255
+ 运行成功后,打开如下 CSI 数据实时可视化界面,界面左侧为数据显示界面,右侧为数据模型界面:
5356
![csi_tool界面](./docs/_static/3.3_csi_tool.png)

0 commit comments

Comments
 (0)