I want to use the BW16 to detect the RSSI of devices in the channel. However, I cannot find any information about this in the forum. I know the ESP32 could achieve the promiscuous mode function and get the RSSI by the packet. I need some help with this issue. Thanks!
Promiscuous mode is not available when using Arduino IDE. You should refer to the Standard SDK WiFi API for configuring promiscuous mode and reading data.
@user1 the default compiled firmware should include promiscuous mode, which can be accessed by the ATWMAT command. The code for the AT command can be seen here, and it triggers promisc mode by calling APIs here.