Search found 6 matches

by gschmott
Thu Apr 07, 2016 2:00 am
Forum: ESP8266 boards
Topic: One month's development report on MicroPython ESP8266 port
Replies: 9
Views: 16119

Re: One month's development report on MicroPython ESP8266 port

Ok, let's try to find an answer together. @deshipu mentioned "There is a filesystem object in the os module". How could he possibly know? Well, just by looking at the source of "os" module: https://github.com/micropython/micropython/blob/master/esp8266/moduos.c#L116 . Or even easier: by doing "dir(...
by gschmott
Sat Apr 02, 2016 12:51 pm
Forum: ESP8266 boards
Topic: Call for testsuite running results
Replies: 31
Views: 27737

Re: [URGENT] Call for testsuite running results

Passed on a generic ESP-12 module soldered onto a board: 405 tests performed (13213 individual testcases) 405 tests passed Of course trying to connect to my access point fails unless I drop my heap-size down to 11KB. Is this issue (RAM) going to be addressed next? Kind limited having an ESP8266 that...
by gschmott
Thu Mar 31, 2016 12:52 am
Forum: ESP8266 boards
Topic: esp8266 network run wlan.connect esp8266 restart
Replies: 10
Views: 11695

Re: esp8266 network run wlan.connect esp8266 restart

I'm seeing identical behavior with today's latest commit (61fa7c81527016be164321c442fe5317daa260ee). I erase the flash using esptool.py and then try the following: >>> import network >>> wlan = network.WLAN(network.STA_IF) >>> wlan.active(True) >>> wlan.isconnected() False >>> wlan.connect('xxxxx', ...
by gschmott
Sun Mar 13, 2016 7:57 pm
Forum: ESP8266 boards
Topic: MicroPython Compilation Error
Replies: 25
Views: 24423

Re: MicroPython Compilation Error

Scorpi0, I have exactly the same behaviour, even after updating and re-building the SDK with make clean git pull git submodule sync git submodule update make For me, the only way to compile properly is to manually edit /home/vagrant/esp-open-sdk/xtensa-lx106-elf/xtensa-lx106-elf/sysroot/usr/include...
by gschmott
Sun Mar 13, 2016 7:07 pm
Forum: ESP8266 boards
Topic: Cannot start REPL after successful flash
Replies: 9
Views: 12129

Re: Cannot start REPL after successful flash

indication that it could not find the module 'boot' is a very bad thing . ;) I hope someone can point us in the right direction The boot module is not essential. If you follow the suggestions over here and on the other thread starting with http://forum.micropython.org/viewtopic.php?f=16&t=1631#p938...
by gschmott
Sun Mar 13, 2016 5:11 pm
Forum: ESP8266 boards
Topic: Cannot start REPL after successful flash
Replies: 9
Views: 12129

Re: Cannot start REPL after successful flash

My experience after my first attempt at flashing the adafruit huzzah feather is to have the following characters on the screen after a bunch that are unreadable and the esp8266 is unresponsive. Any thoughts? lbl▒▒l▒could not find module 'boot' >>> MicroPython v1.6-214-ge5c39a3 on 2016-03-12; ESP mo...