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 に答える