- May 02, 2016
-
-
Paul Sokolovsky authored
-
Damien George authored
A standard I2C address is 7 bits but addresses 0b0000xxx and 0b1111xxx are reserved. The scan() method is changed to reflect this, along with the docs.
-
- May 01, 2016
-
-
Paul Sokolovsky authored
Fixes build under MacOSX.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Per current CPython docs conventions, arguments are in italics. Follow that.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
- Apr 30, 2016
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
If there's no port_config.py file, or it lacks WEBREPL_PASS variable, "initial setup mode" will be entered on first WebREPLconnection. User will be asked for password, which will be written to port_config.WEBREPL_PASS, and system restarted to work in normal mode with password active.
-
Paul Sokolovsky authored
Handling of binary protocol is untested on esp8266 so far.
-
Paul Sokolovsky authored
After password is checked.
-
Paul Sokolovsky authored
Request for password then becomes mandatory part of the protocol.
-
- Apr 29, 2016
-
-
Paul Sokolovsky authored
Currently it pre-imports webrepl, but doesn't start it.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
That's production setting. Also, extra UART output may affect behavior of (subpar) network drivers.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Like ESP8266 has.
-
Paul Sokolovsky authored
The smaller chunks we send (and receive), the more packets there to receive, and higher chance to git internal packet buffer overflow in WiFi driver.
-
Damien George authored
On PYBLITEv1.0 there is no accelerometer and in this case the Accel() constructor should not silently succeed.
-
Paul Sokolovsky authored
So detailed that even commented by default.
-
Paul Sokolovsky authored
A bit of optimization.
-
Paul Sokolovsky authored
-
- Apr 28, 2016
-
-
Paul Sokolovsky authored
EAGAIN should be returned only if underlying socket returned it. Wrap existing read function into external loop to process all data available.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
While just a websocket is enough for handling terminal part of WebREPL, handling file transfer operations requires demultiplexing and acting upon, which is encapsulated in _webrepl class provided by this module, which wraps a websocket object.
-