The ESP32-S3 in the Nano runs at 240Mhz. The sdkconfig.defaults file in the blink example doesn't specify that.
The default value (found via menuconfig) is only 160Mhz. Adding CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y to the default config fixes that (and improves performance of CPU heavy workloads noticably :)).
The ESP32-S3 in the Nano runs at 240Mhz. The sdkconfig.defaults file in the blink example doesn't specify that.
The default value (found via menuconfig) is only 160Mhz. Adding
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
to the default config fixes that (and improves performance of CPU heavy workloads noticably :)).