0

I compiled configuration demo for ESP8266 by using Xtensa-lx106 GNU

file demo_client

demo_client: ELF 32-bit LSB executable, Tensilica Xtensa, version 1 (SYSV), corrupted program header size, not stripped

Could you please tell me, how can i flash this application to ESP8266 by using espytoo.py and how to test it.

I also not able to get GPIO ESP8266 controll application in my sandbox image. Could you please tell me how can i test gpio control application with nodemcu esp8266 and android app.

Thanks

Rurban

4

1 回答 1

0

要从 ELF 文件创建二进制文件:

esptool.py elf2image demo_client

在此之后,使用应用程序刷新板:

sudo esptool.py write_flash 0x00000 demo_client-0x00000.bin 0x40000 demo_client-0x40000.bin

如有必要,您可以使用--port参数指定串行端口。

关于 ESP8266 的 GPIO 演示,这里是一个适用于 Kaa 0.10 的 GPIO 从应用程序示例。

于 2017-01-12T16:04:24.457 回答