aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2016-05-03docs/machine: idle() description generalization.Paul Sokolovsky
2016-05-03docs/machine: More generic description of sleep's, WiPy details to its genref.Paul Sokolovsky
2016-05-03docs/machine: Move WiPy-specific hardware details to its general reference.Paul Sokolovsky
2016-05-03docs/machine: Generalize docs from just WiPy to other ports.Paul Sokolovsky
2016-05-03docs/esp8266: Add ESP8266 tutorial.Damien George
2016-05-03docs/network: esp8266: MAC address is set via .config() method.Paul Sokolovsky
2016-05-03docs: Use getaddrinfo() result in easy way.Paul Sokolovsky
Instead of extracting 4th element, extact last. Much easier to remember!
2016-05-02docs/esp8266_contents: Referebce general and tutorial docs.Paul Sokolovsky
2016-05-02docs/esp8266/general: Add "Boot process" section.Paul Sokolovsky
2016-05-02docs/esp8266/general: Add techspec section.Paul Sokolovsky
Link to vendor forum with datasheets, etc. is provided, as well as inline TTX.
2016-05-02docs/esp8266/general: Fix list formatting.Paul Sokolovsky
2016-05-02docs/esp8266/general: Add more points to "Multitude of boards" section.Paul Sokolovsky
2016-05-02docs/esp8266/general: WebREPL is described in quickref for now.Paul Sokolovsky
2016-05-02docs/library/machine.I2C: Update to reflect ESP8266 implementation.Damien George
This machine.I2C documentation is now closer to a more port-neutral description, although there are still differences between WiPy and ESP8266.
2016-05-02docs: _io and _collections were renamed to have standard "u" prefix.Paul Sokolovsky
2016-05-02stmhal, cc3200: Change i2c.scan() method to scan addresses 0x08-0x77.Damien George
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.
2016-05-02docs: Add _io module reference.Paul Sokolovsky
2016-05-02docs: Add _collections module reference.Paul Sokolovsky
2016-05-01docs/sys: Describe sys.platform is port-neutral manner.Paul Sokolovsky
2016-05-01docs/sys: Describe sys.maxsize.Paul Sokolovsky
2016-05-01docs/sys: Describe sys.implementation.Paul Sokolovsky
2016-05-01docs/sys: Clean up print_exception() description.Paul Sokolovsky
2016-05-01docs/sys: Clarify description of sys.exit().Paul Sokolovsky
2016-05-01docs/sys: Make module variable descriptions proper sentences.Paul Sokolovsky
2016-05-01docs/sys: Remove port-specific details from description of stdin/out/err.Paul Sokolovsky
2016-05-01docs/ustruct: Fix argument formatting.Paul Sokolovsky
Per current CPython docs conventions, arguments are in italics. Follow that.
2016-05-01docs/sys: Document sys.modules.Paul Sokolovsky
2016-05-01docs/ustruct: Document pack_into(), unpack_from().Paul Sokolovsky
2016-05-01docs/esp8266/quickref: Add info about WebREPL.Paul Sokolovsky
2016-05-01docs/utime: Clarify module purpose.Paul Sokolovsky
2016-05-01docs/library/utime: Elaborate on epochs and calendar time maintenance.Paul Sokolovsky
2016-04-28docs/esp8266: Update quickref to reflect changes to 1-wire and NeoPixel.Damien George
2016-04-28docs: Make the short port names in the port/version sidebar lowercase.Damien George
To make it neater and simpler.
2016-04-28docs/network: esp8266: Describe wlan.config() method.Paul Sokolovsky
2016-04-28docs/network: esp8266: Add wlan.ifconfig() method.Paul Sokolovsky
2016-04-27docs/ubinascii: Clean up grammar.Paul Sokolovsky
2016-04-27docs/library: Consistently use admonitions for CPython differences.Paul Sokolovsky
2016-04-27docs/utime: Describe sleep() peculiarities in MicroPython.Paul Sokolovsky
Not all ports accept floating-point value.
2016-04-27docs/utime: Describe time() peculiarities in MicroPython.Paul Sokolovsky
2016-04-27docs/library/utime: Add more time functions for unix and esp8266 ports.Damien George
2016-04-27docs: Fix uos and utime heading underlines to be the correct length.Damien George
Otherwise Sphinx gives a warning.
2016-04-27docs/library: "os" module is actually "uos".Paul Sokolovsky
2016-04-27docs/Makefile: Default BUILDDIR based on MICROPY_PORT.Paul Sokolovsky
It doesn't make sense to duplicate both on command line, and MICROPY_PORT is effectively mandatory to build docs.
2016-04-27docs/library/index: Order sections from the most to least standard modules.Paul Sokolovsky
2016-04-27docs/library/index: Make single section for "micro-ified" modules.Paul Sokolovsky
Even the modules whose names don't start with "u" prefix are micro-ified anyway, i.e. provide only subset of CPython's functionality (and sometimes extensions to it). So, it doesn't make much sense to devide them by criteria of having/not having "u" prefix.
2016-04-27docs: Module "time" is actually "utime".Paul Sokolovsky
2016-04-27docs/library/index: esp8266 has the same set of stdlibs as pyboard/unix.Paul Sokolovsky
2016-04-27docs/library/index: Move WiPy "micro-libraries" under corresponding heading.Paul Sokolovsky
2016-04-27docs/library: Group MicroPython-specific modules under separate heading.Paul Sokolovsky
2016-04-26docs/network: esp8266: scan(): Add note that bssid is bytes object.Paul Sokolovsky