Code for ESP32
Go to file
Bob 4b6b00fd9c 5G and HT80 on the C5 2025-12-03 14:44:36 -08:00
components 5G and HT80 on the C5 2025-12-03 14:44:36 -08:00
main power save, sdkconfig.defaults 2025-11-22 12:33:22 -08:00
.gitignore Initial commit: ESP32 iperf implementation 2025-11-08 19:57:11 +00:00
CMakeLists.txt more on CSI and S3 2025-11-21 10:53:44 -08:00
DEPLOYMENT_GUIDE.md support scripts 2025-11-11 14:57:56 -08:00
MASS_DEPLOY.md Add mass deployment system with static IP and WiFi configuration 2025-11-08 23:10:07 +00:00
PARALLEL_FLASH.md Add parallel mass flash script for 3-5x faster deployment 2025-11-08 23:23:09 +00:00
QUICK_START.md support scripts 2025-11-11 14:57:56 -08:00
README.md build works 2025-11-11 13:23:09 -08:00
config_device.py 5G and HT80 on the C5 2025-12-03 14:44:36 -08:00
detect_esp32.py fix detect chiptype 2025-11-09 20:15:41 -08:00
flash_all.py more on flash_all 2025-11-10 08:50:14 -08:00
flash_all_parallel.py Show chip type and port during build and flash operations 2025-11-09 20:56:40 +00:00
flash_all_serial_config.py build works 2025-11-11 13:23:09 -08:00
flash_and_config.py Add flash_and_config.py and WiFi reconfiguration system 2025-11-15 12:12:33 -08:00
map_usb_to_ip.py more scripts 2025-11-12 15:24:16 -08:00
mass_deploy.py mass deploy 2025-11-15 12:07:35 -08:00
mass_deploy.sh support scripts 2025-11-11 14:57:56 -08:00
mass_deploy_enhanced.sh support scripts 2025-11-11 14:57:56 -08:00
parse_csi.py add csi parser 2025-11-21 13:34:56 -08:00
partitions.csv add custom partition 2025-11-21 17:22:42 -08:00
reconfig_simple.py improve reconfig 2025-11-12 16:11:20 -08:00
reconfig_simple_nextip.py more scripts 2025-11-12 15:24:16 -08:00
sdkconfig.defaults update sdkconfig.defaults 2025-11-22 12:35:05 -08:00
test_devices.sh support scripts 2025-11-11 14:57:56 -08:00

README.md

esp32-iperf (ESP-IDF 6.x)

Minimal ESP32/ESP32-S3 iPerf firmware with station mode and optional static IP. Tested on ESP-IDF 6.0 (dev snapshot).

Repo layout

Supported Targets ESP32 ESP32-C2 ESP32-C3 ESP32-C5 ESP32-C6 ESP32-C61 ESP32-H2 ESP32-H21 ESP32-H4 ESP32-P4 ESP32-S2 ESP32-S3 Linux

Hello World Example

Starts a FreeRTOS task to print "Hello World".

(See the README.md file in the upper level 'examples' directory for more information about examples.)

How to use example

Follow detailed instructions provided specifically for this example.

Select the instructions depending on Espressif chip installed on your development board:

Example folder contents

The project hello_world contains one source file in C language hello_world_main.c. The file is located in folder main.

ESP-IDF projects are built using CMake. The project build configuration is contained in CMakeLists.txt files that provide set of directives and instructions describing the project's source files and targets (executable, library, or both).

Below is short explanation of remaining files in the project folder.

├── CMakeLists.txt
├── pytest_hello_world.py      Python script used for automated testing
├── main
│   ├── CMakeLists.txt
│   └── hello_world_main.c
└── README.md                  This is the file you are currently reading

For more information on structure and contents of ESP-IDF projects, please refer to Section Build System of the ESP-IDF Programming Guide.

Troubleshooting

  • Program upload failure

    • Hardware connection is not correct: run idf.py -p PORT monitor, and reboot your board to see if there are any output logs.
    • The baud rate for downloading is too high: lower your baud rate in the menuconfig menu, and try again.

Technical support and feedback

Please use the following feedback channels:

  • For technical queries, go to the esp32.com forum
  • For a feature request or bug report, create a GitHub issue

We will get back to you as soon as possible.