Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 581 Bytes

README.md

File metadata and controls

17 lines (16 loc) · 581 Bytes

ESP32 Vision Offloading

This project targets efficient image offloading from an ESP32 camera module to the edge server through Wi-Fi.

How to Flash Firmware for ESP32

  • Connect IO0 to GND.
  • Start flashing and press the RESET button once.
  • Example Makefile entry for flash:
flash:
	@usbport=$$(ls /dev/cu.usbserial-* | head -1); \
	if [ -z "$$usbport" ]; then \
		echo "No USB port found"; \
	else \
		idf.py -p $$usbport flash; \
	fi
  • Wait until flashing is done, disconnect IO0, and push the RESET button again. The new firmware won't run until you RESET the chip.