例程里面的,不懂是什么左右,如何设置
#if CONFIG_GAIN_CONTROL
static uint16_t agc_gain_sum=0;
static uint16_t fft_gain_sum=0;
static uint8_t agc_gain_force_value=0;
static uint8_t fft_gain_force_value=0;
if (s_count<100) {
agc_gain_sum += phy_info->agc_gain;
fft_gain_sum += phy_info->fft_gain;
}
else if ...
Search found 4 matches
- Thu Oct 09, 2025 2:01 pm
- Forum: ESP-IDF 中文讨论版
- Topic: ESP CSI的FFT AGC gain是什么
- Replies: 0
- Views: 3771
- Tue Sep 30, 2025 6:27 am
- Forum: Hardware
- Topic: Can the ESP32S3 use a 40M active crystal oscillator?
- Replies: 1
- Views: 2255
Can the ESP32S3 use a 40M active crystal oscillator?
The schematic design document for the ESP32S2 introduces the active crystal circuit: If an active crystal is to be used, connect the clock output of the active crystal to the XTAL_P terminal on the chip side through an AC coupling capacitor (around 50 pF), and leave the XTAL_N floating. Now I am ...
- Mon Sep 29, 2025 12:41 pm
- Forum: 硬件问题讨论
- Topic: ESP32S3可以使用有源晶振吗?
- Replies: 0
- Views: 8602
ESP32S3可以使用有源晶振吗?
ESP32S2的原理图设计文档中介绍了有源晶振电路:如需使用有源晶振,则将有源晶振的时钟输出通过一个隔直电容(50 pF 左右)连接至芯片端的 XTAL_P 端,XTAL_N 悬空即可。现在我使用ESP32S3,使用时钟缓冲芯片提供了3.3V 40M的方波时钟,通过47pf电容隔直输入到P端,N端悬空,但是芯片貌似不能正常工作
- Fri Sep 12, 2025 4:23 am
- Forum: ESP-IDF 中文讨论版
- Topic: ESP32S3可以主动获取CSI吗
- Replies: 1
- Views: 3663
ESP32S3可以主动获取CSI吗
目前尝试了S3连接手机热点,然后不断地去ping网站,能进入CSI的任务处理中得到CSI,但是获取CSI的时间并不是同步固定的,我想知道能不能通过一个同步触发器让ESP32主动去采样CSI。