diff --git a/bin/firmware-perf.bin b/bin/firmware-perf.bin index 523f6f4..def4b9e 100644 Binary files a/bin/firmware-perf.bin and b/bin/firmware-perf.bin differ diff --git a/bin/firmware.bin b/bin/firmware.bin index 3e6c893..6736bbb 100644 Binary files a/bin/firmware.bin and b/bin/firmware.bin differ diff --git a/src_docs/source/compiling.rst b/src_docs/source/compiling.rst index 6ebf6cf..8d0c506 100644 --- a/src_docs/source/compiling.rst +++ b/src_docs/source/compiling.rst @@ -43,8 +43,6 @@ Source structure - Directory for flashing device filesystem * - /doc - Various external documents used as input - * - /docs - - Folder published to github pages * - /html - Source for html files * - /img diff --git a/src_docs/source/images/putty.png b/src_docs/source/images/putty.png new file mode 100644 index 0000000..2fd88d9 Binary files /dev/null and b/src_docs/source/images/putty.png differ diff --git a/src_docs/source/images/serial.png b/src_docs/source/images/serial.png new file mode 100644 index 0000000..836c881 Binary files /dev/null and b/src_docs/source/images/serial.png differ diff --git a/src_docs/source/images/wifi.png b/src_docs/source/images/wifi.png new file mode 100644 index 0000000..2bf1288 Binary files /dev/null and b/src_docs/source/images/wifi.png differ diff --git a/src_docs/source/installation.rst b/src_docs/source/installation.rst index eb3f9d6..4669ecb 100644 --- a/src_docs/source/installation.rst +++ b/src_docs/source/installation.rst @@ -7,14 +7,33 @@ Official esptool The prefered option for flashing esp8266 device is via the official esptool. Documentation can be found here; https://docs.espressif.com/projects/esptool/en/latest/esp32/ +Windows 10 should install a driver for the USB -> Serial automatically when you connect a esp8266. + +Flashing on windows +******************* + The basic command for flashing on Windows is; -``esptool.py --port COM4 write_flash 0 firmware.bin`` +``esptool.py --port COM4 write_flash 0x0 firmware.bin`` If there are issues you can try do erase the flash first using this command; ``esptool.py --port COM4 erase_flash`` +Serial Monitoring +******************* + +To check output from the device (logs) there are several tools out there. I found this simple tool in the Windows Store called ``Serial Port Monitoring``. +Just select a baud rate of 115200, 8N1. + +.. image:: images/serial.png + :width: 800 + :alt: Serial output + + +Binaries +******** + In the /bin directory you will find 3 different firmware builds; * **firmware.bin** @@ -47,3 +66,7 @@ If this is not configured in the device it will create an wirless access point c enter the SSID and password you want to use. If the web page dont open automatically you can enter the following adress in the browser: **http://192.168.4.1** +.. image:: images/wifi.png + :width: 200 + :alt: Wifi page +