Wifi 6 at 2.4Ghz. I have the Mikrotik AX3 wifi 6 network here, works fine.
It is *very* fast to auth and connect.
Yes, after my initial tests, I can confirm that. Which is nice.
I've also noticed that with the default settings, the RSSI is much higher than with, say, my tablet (a Samsung). Both located in the same room, relatively far away from the AP, the RSSI with the ESP32-C6 board is almost 20 dB higher.
I suspected that the default TX power was probably at its maximum. I set it to lower values with esp_wifi_set_max_tx_power() and got a matching decrease in RSSI. So one thing that can be adjusted is the TX power definitely, which will also lower the current peaks.
Speaking of esp-idf, while feature-packed, it's also a huge dog. The repo itself is 2GB, and it downloads additional required tools when installing, which take 2.4GB. So that's a total of 4.4GB, the largest SDK I have ever run into for a MCU so far. The typical code size of compiled examples is also impressive - a basic WiFi example program gets several hundreds of files compiled and takes about 700KB. One annoying quirk is that any change of settings via the 'menuconfig' system seems t trigger the recompilation of the whole project.
So, that's my journey with the ESP32-C6 so far.