mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-11 02:12:53 +00:00
working with header animations - marked/highlightjs fixes
This commit is contained in:
@@ -72,15 +72,19 @@ Unfortunately the current version of ESP8266/Arduino does not offer alternative
|
||||
|
||||
The methods to flash the ESP8266 within the Arduino IDE can be adjusted. I first thought I needed to download another method to flash with such as the [esptool.py](https://github.com/themadinventor/esptool), but I found a much easier solution. The "boards.txt" file can be edited, which allowed more customization to the flashing settings within the Arduino IDE. This is the path on my system.
|
||||
|
||||
`/Users/$USER/Library/Arduino15/packages/esp8266/hardware/esp8266/2.1.0/boards.txt`
|
||||
/Users/$USER/Library/Arduino15/packages/esp8266/hardware/esp8266/2.1.0/boards.txt
|
||||
|
||||
The reset method needs to be changed from "ck" to "none" in order for this to work properly.
|
||||
|
||||
`generic.upload.resetmethod=ck`
|
||||
```bash
|
||||
generic.upload.resetmethod=ck
|
||||
```
|
||||
|
||||
to
|
||||
|
||||
`generic.upload.resetmethod=none`
|
||||
```bash
|
||||
generic.upload.resetmethod=none
|
||||
```
|
||||
|
||||
Because we are not using the CK flashing method, we need to boot up the ESP8266 into boot loader mode manually.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user