aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2016-04-05py: Move stream-related declarations from obj.h to stream.h.Paul Sokolovsky
2016-04-05docs/esp8266/quickref: Add note about physical vs logical pin numbers.Paul Sokolovsky
2016-04-05esp8266/modnetwork: require_if(): Report the actual interface required.Paul Sokolovsky
2016-04-05docs/ubinascii: Document a2b_base64(), b2a_base64().Paul Sokolovsky
2016-04-05esp8266: Move pyb.unique_id() to machine.unique_id().Paul Sokolovsky
2016-04-05esp8266: Move pyb.hard_reset() to machine.reset().Paul Sokolovsky
2016-04-04unix/modsocket: Use mp_const_empty_map instead of creating empty map.Paul Sokolovsky
2016-04-04py/obj.h: Add comment why mp_fun_kw_t takes non-const mp_map_t*.Paul Sokolovsky
2016-04-03unix: djgpp errno.h have no ENOTSUP, so define it to Linux value.pohmelie
2016-04-03docs/machine: Change wording to be a bit more port-neutral.Paul Sokolovsky
2016-04-03docs/os: Change wording to be a bit more port-neutral.Paul Sokolovsky
2016-04-03docs: esp8266: esp.socket is deprecated, remove from docs.Paul Sokolovsky
2016-04-03esp8266: Bump heap size to 24k.Paul Sokolovsky
2016-04-03esp8266: Update flashing instructions in README.Paul Sokolovsky
2016-04-03esp8266: Switch back to flashing combined firmware (single file).Paul Sokolovsky
2016-04-03esp8266: Minimize gap between Inst/DataRAM segments and FlashROM segment.Paul Sokolovsky
2016-04-03esp8266/ets_alt_task: Comment out debug output.Paul Sokolovsky
2016-04-03esp8266: Bump iROM size to 512k.Paul Sokolovsky
2016-04-03esp8266: Move .rodata where it belongs with -mforce-l32 help.Paul Sokolovsky
2016-04-03docs: Update copyright notice.Paul Sokolovsky
2016-04-03esp8266/README: Add link to docs.Paul Sokolovsky
2016-04-02examples/http_client_ssl.py: HTTPS client example.Paul Sokolovsky
2016-04-02examples/http_server.py: Bind to 0.0.0.0, to be accessible from other hosts.Paul Sokolovsky
2016-04-02examples/http_server.py: Introduce main() function.Paul Sokolovsky
2016-04-02examples/http_server.py: Refactor/simplify for Python 3.5.Paul Sokolovsky
2016-04-02examples/http_client.py: Introduce main() function.Paul Sokolovsky
2016-04-02examples/http_client.py: Improve CPython compatibility in stream mode.Paul Sokolovsky
2016-04-02unix/file: "encoding" arg to open() isn't kw-only.Paul Sokolovsky
2016-04-02unix/file: Parse "buffering" argument of open() builtin.Paul Sokolovsky
2016-04-02esp8266: Use VM_HOOK to call ets_loop_iter within the VM.Damien George
2016-04-01example/http_client.py: Remove unused code.Paul Sokolovsky
2016-04-01examples: http_client.py, http_server.py aren't just unix, move to network/.Paul Sokolovsky
2016-04-01py/map: Prevent map resize failure from destroying map.Stephen Kyle
2016-04-01esp8266/uart: Get ctrl-C working now that event-based REPL is disabled.Damien George
2016-04-01esp8266/uart: Comment out old, unused rx buffering code.Damien George
2016-04-01esp8266: Switch to non event-driven REPL to support paste mode.Paul Sokolovsky
2016-04-01esp8266: Support dedicated REPL loop (aka pull-style).Paul Sokolovsky
2016-04-01esp8266: Disallow recursive calls to REPL.Paul Sokolovsky
2016-04-01unix: implement -i option (inspect - start REPL after script is finished)Pavol Rusnak
2016-04-01esp8266: Move PHY mode constants from modesp to modnetwork.Paul Sokolovsky
2016-03-31esp8266: Reset term_obj on reboot.Damien George
2016-03-31esp8266: Implement input part of dupterm handling.Paul Sokolovsky
2016-03-30esp8266: Switch back to accumulating input data via ring buffer.Paul Sokolovsky
2016-03-30esp8266: Fix issue when current repl line was garbage-collected.Paul Sokolovsky
2016-03-30py/ringbuf.h: Add reusable ring buffer class.Paul Sokolovsky
2016-03-30docs: network: esp8266: .scan() is now synchronous and returns result list.Paul Sokolovsky
2016-03-30docs: network: esp8266: status is WLAN object method.Paul Sokolovsky
2016-03-30esp8266: Support synchronous wifi scanning.Damien George
2016-03-29py/parsenum: Use pow function to apply exponent to decimal number.Damien George
2016-03-29py/formatfloat: Fix further cases of buffer overflow in formatting.Damien George