mirror of
https://github.com/cesanta/mongoose.git
synced 2025-01-10 15:20:17 +08:00
27 lines
1.2 KiB
Markdown
27 lines
1.2 KiB
Markdown
|
This is a Mongoose "Hello, world" that can be compiled under ESP8266 RTOS SDK.
|
||
|
|
||
|
It sets up an AP (SSID `Mongoose`) and serves a "hello world" page on http://192.168.4.1/
|
||
|
|
||
|
Most of the the boilerplate comes from [project_template](https://github.com/espressif/ESP8266_RTOS_SDK/tree/master/examples/project_template) (@ [3ca6af5](https://github.com/espressif/ESP8266_RTOS_SDK/tree/3ca6af5da68678d809b34c7cd98bee71e0235039/examples/project_template)) with minimal changes.
|
||
|
|
||
|
To build with no changes to the SDK, you will need a module with 1MB (8Mb) flash or more.
|
||
|
|
||
|
Compile (for NodeMCU 1.0):
|
||
|
|
||
|
```
|
||
|
$ export SDK_PATH=/path/to/ESP8266_RTOS_SDK
|
||
|
$ export BIN_PATH=./bin
|
||
|
$ make clean; make BOOT=new APP=1 SPI_SPEED=40 SPI_MODE=dio SPI_SIZE_MAP=6
|
||
|
```
|
||
|
|
||
|
Flash (using [esptool](https://github.com/themadinventor/esptool)):
|
||
|
|
||
|
```
|
||
|
$ esptool.py --port /dev/ttyUSB0 --baud 230400 \
|
||
|
write_flash --flash_mode=dio --flash_size=32m \
|
||
|
0x00000 ${SDK_PATH}/bin/boot_v1.4\(b1\).bin \
|
||
|
0x01000 ${BIN_PATH}/upgrade/user1.4096.new.6.bin
|
||
|
```
|
||
|
|
||
|
Note: the output can be made to fit in 512KB (4Mb) by moving `irom0_0_seg` in [eagle.app.v6.ld](https://github.com/espressif/ESP8266_RTOS_SDK/blob/master/ld/eagle.app.v6.ld) and increasing its size.
|