Search found 29 matches

by jwissing
Sun Apr 24, 2016 10:33 am
Forum: ESP8266 boards
Topic: Early access releases #3 & #4
Replies: 51
Views: 41829

Re: Early access releases #3 & #4

One more observation while testing the webREPL.
It takes about 20 seconds after a disconnect is acknowledged in the browser.
Could this be faster?
by jwissing
Sun Apr 24, 2016 10:30 am
Forum: ESP8266 boards
Topic: Early access releases #3 & #4
Replies: 51
Views: 41829

Re: Early access releases #3 & #4

Hi, i have just uploaded firmware-v04.bin to my ESP12E. After recreating file boot.py and some of my test files i started to test webREPL via Wifi standalone by starting webrepl from main.py without a serial connection. Here are the files i use: boot.py import esp esp.osdebug(None) import os import ...
by jwissing
Sat Apr 16, 2016 8:15 am
Forum: ESP8266 boards
Topic: Early access releases #3 & #4
Replies: 51
Views: 41829

Re: Early access release #3

... Is this release and the accessible git source the same already? ... Do i need to pull some other repository? Take a look at github and read the section i did mention. Check locally and you should find it in your recently pulled local git repository. If not present take Pauls thread for "tips, t...
by jwissing
Fri Apr 15, 2016 5:40 pm
Forum: ESP8266 boards
Topic: Early access releases #3 & #4
Replies: 51
Views: 41829

Re: Early access release #3

Oh, just saw you can help yourself... Go to the esp8266/scripts/ directory of your MicroPython sources and edit the file flashdev.py. There you can find various debug messages printed onto the console. Simply comment them out or tease them as you like. After that you do need to rebuild the firmware...
by jwissing
Fri Apr 15, 2016 4:39 pm
Forum: ESP8266 boards
Topic: Early access releases #3 & #4
Replies: 51
Views: 41829

Re: Early access release #3

deshipu wrote:
jwissing wrote:Just a question.
How can i disable the debug messages that seem to come from bdev?

Code: Select all

>>> import esp
>>> esp.osdebug(None)
I have this code in my boot.py. but those messages are written nonetheless.
by jwissing
Fri Apr 15, 2016 2:25 pm
Forum: ESP8266 boards
Topic: Early access releases #3 & #4
Replies: 51
Views: 41829

Re: Early access release #3

Just a question.
How can i disable the debug messages that seem to come from bdev?

Code: Select all

>>> os.remove('switchRelay.py')
writeblocks(2, 3fff1950(4096))
readblocks(1, 3fff19a0(4096))
writeblocks(1, 3fff1a80(4096))
ioctl(3, 0)
>>>
by jwissing
Fri Apr 15, 2016 2:06 pm
Forum: ESP8266 boards
Topic: Early access releases #3 & #4
Replies: 51
Views: 41829

Re: Early access release #3

webREPL crashes/reboots after disconnect. I can reproduce the reboot using following steps: serial connection (/dev/ttyUSB0) to esp12e waiting for REPL boot board hard with reset button -> esp12e response on serial REPL import webrepl2 start webrepl from git cloned repository with firefox connect to...
by jwissing
Fri Apr 15, 2016 10:05 am
Forum: ESP8266 boards
Topic: Call for testsuite running results
Replies: 31
Views: 28005

Re: Call for testsuite running results

Test results after upgrading dev env to latest for doit ESP12E DEVKIT V2. [code]412 tests performed (13321 individual testcases) 412 tests passed 48 tests skipped: builtin_compile class_descriptor exception_chain fun_name ordereddict1 parser slice_attrs string_splitlines machine1 machine_mem urandom...
by jwissing
Wed Apr 13, 2016 10:51 pm
Forum: ESP8266 boards
Topic: Early access releases #3 & #4
Replies: 51
Views: 41829

Re: Early access release #3

Hi, i did some tests using the webREPL and have found some questions about using it. I'm using an ESP12E Devkit V2 from http://www.doit.am. The webREPL is started from REPL with import webrepl2. The git repository is forked to my windows pc with mobaxterm connection to the linux dev machine. When i ...