From 65534229f27f4b8557df20926e5752bf49459c3a Mon Sep 17 00:00:00 2001 From: Thorsten von Eicken Date: Mon, 4 Jul 2016 16:27:15 -0700 Subject: [PATCH] fixes #166 advrdude example on home page --- html/home.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/html/home.html b/html/home.html index c977c74..138222e 100644 --- a/html/home.html +++ b/html/home.html @@ -40,9 +40,9 @@ /home/arduino/hardware/tools/avrdude \
  -DV -patmega328p \
  -Pnet:esp-link.local:23 \
-   -carduino -b115200 -U -C \
-   /home/arduino/hardware/tools/avrdude.conf \
-   flash:w:my_sketch.hex:i +   -carduino -b115200 \
+   -U flash:w:my_sketch.hex:i\
+   -C /home/arduino/hardware/tools/avrdude.conf

where -Pnet:esp-link.local:23 tells avrdude to connect to port 23 of esp-link. You can substitute the IP address of your esp-link for esp-link.local if necessary.