summaryrefslogtreecommitdiffstatshomepage
path: root/docs
Commit message (Collapse)AuthorAge
* docs/pyboard/tutorial/lcd160cr_skin: Fix typo, get_touched->get_touch.Damien George2017-01-30
|
* docs/uio: Typo fixes/lexical improvements.Paul Sokolovsky2017-01-29
|
* docs/conf.py: Add myself as a copyright holder on the docs.Paul Sokolovsky2017-01-29
| | | | | | | | | | | | | | | | | | | | | | | | Based on the following statistics: $ git log docs |grep Author | sort | uniq -c | sort -n -r 175 Author: Paul Sokolovsky 135 Author: Damien George 31 Author: Daniel Campora 26 Author: danicampora 14 Author: Peter Hinch git blame stats script from http://stackoverflow.com/a/13687302/496009: $ sh git-authors docs 9977 author Damien George 2679 author Paul Sokolovsky 1699 author Daniel Campora 1580 author danicampora 1286 author Peter Hinch 282 author Shuning Bian 249 author Dave Hylands Total lines per this script: 18417, my contribution is 14.5%.
* docs/uio: Describe differences between uPy an CPy stream hierarchy.Paul Sokolovsky2017-01-28
|
* docs/usocket: Dedent Methods section.Paul Sokolovsky2017-01-28
| | | | This was apparently of an ::only directive which was later removed.
* docs/usocket: Clarify description of various methods.Paul Sokolovsky2017-01-28
|
* docs/usocket: Elaborate "Constants" section.Paul Sokolovsky2017-01-28
|
* docs/usocket: Clarify exceptions used.Paul Sokolovsky2017-01-28
|
* docs/machine: Add explicit note on machine module level and scope.Paul Sokolovsky2017-01-28
| | | | | It's very low, hardware level, with associated constraints on operations and callbacks.
* docs/machine.Timer: Move WiPy adhoc parts to its documentation.Paul Sokolovsky2017-01-28
|
* docs/library/lcd160cr: Fix set_brightness range, should be 0..31.Damien George2017-01-24
|
* docs/pyboard/tutorial: Add tutorial for LCD160CR.Damien George2017-01-23
|
* docs: Add documentation for lcd160cr module.Damien George2017-01-23
|
* docs: Fix some minor spelling mistakes.Mike Causer2017-01-18
| | | | | | | | paramter -> parameter send a receive -> send and receive repsonse -> response particualr -> particular constructore -> constructor
* docs: Bump version to 1.8.7.v1.8.7Damien George2017-01-08
|
* docs/usocket: Clarify that socket timeout raises OSError exception.Paul Sokolovsky2017-01-07
|
* docs/library/esp: Remove para and add further warning about flash.Damien George2017-01-06
| | | | There is no longer space reserved by default for native code.
* docs/library/esp: Document esp.set_native_code_location() function.Damien George2017-01-04
|
* esp8266/general: Add "Scarcity of runtime resources" section.Paul Sokolovsky2017-01-04
| | | | With warnings of need to close files, sockets, etc.
* docs/esp8266/tutorial: Close socket after reading page content.Max2017-01-04
|
* docs/library/machine.I2C: Fix I2C constructor docs to match impl.Damien George2016-12-30
|
* docs/esp8266/tutorial: Update intro to add Getting the firmware section.Andrew Mulholland2016-12-30
| | | | | Add a "Getting the firmware" section to better describe how to get hold of the MicroPython firmware, especially if you have a 512kb module.
* docs/library/pyb.UART: Moved writechar doc to sit with other writes.Lorenz Schmid2016-12-15
|
* docs/library/pyb.UART: Added clarification about timeouts.Lorenz Schmid2016-12-15
|
* docs/library/pyb.Accel: Add hardware note about pins used by accel.Peter Hinch2016-12-02
|
* docs/library/machine.I2C: Refine definitions of I2C methods.Damien George2016-11-23
|
* docs/library/index: Elaborate on u-modules.Paul Sokolovsky2016-11-16
| | | | Also, remove an "only" directive in u-modules description.
* docs: Remove references to readall() and update stream read() docs.Damien George2016-11-14
|
* stmhal/i2c: Add option to I2C to enable/disable use of DMA transfers.Damien George2016-11-11
| | | | | | | New keyword option in constructor and init() method is "dma=<bool>". DMA is now disabled by default for I2C transfers because it currently does not handle I2C bus errors very well (eg if slave device doesn't ACK or NACK correctly during a transfer).
* docs: Bump version to 1.8.6.v1.8.6Damien George2016-11-10
|
* docs/library/machine.Pin: Update Pin docs to align with new HW API.Damien George2016-11-09
|
* esp8266: Update docs for esptool 1.2.1/SDK 2.0 (--flash_size=detect).Paul Sokolovsky2016-11-08
|
* docs/*/quickref.rst: Use new semantics of ticks_diff()puuu2016-11-08
|
* docs/esp8266: Update for new WebREPL setup procedure.Paul Sokolovsky2016-11-06
|
* docs/utime: Add docs for ticks_add(), improvements for other ticks_*().Paul Sokolovsky2016-11-01
|
* docs/utime: Remove only:: for ticks_diff().Paul Sokolovsky2016-11-01
| | | | | | It's mandatory function which should be present in every port. Even if it's not, in the stdlib intro we waarn users that a particular port can lack anything of described in the docs.
* docs/utime: Describe new semantics of ticks_diff() (signed ring arithmetics).Paul Sokolovsky2016-10-31
|
* docs/utime: Document ticks_cpu() in more detail.Paul Sokolovsky2016-10-30
| | | | Also, drop ::only directive.
* docs/library/index: Update TOCs so builtins sorted before modules.Paul Sokolovsky2016-10-30
|
* docs/library/network: Typo fixes, consistent acronym capitalization.Paul Sokolovsky2016-10-28
|
* docs/library/network: Reword intro paragraph.Paul Sokolovsky2016-10-28
|
* docs/machine.SPI.rst: Fix typos and formatting, clarify.Paul Sokolovsky2016-10-25
| | | | | | Clarify the class implements master side of the protocol, also put adhoc WiPy paramter after the generic, described in the current Hardware API version.
* docs/library/builtins: Add docs for delattr and slice.Damien George2016-10-25
|
* docs/library/machine.SPI: Remove spurious "of".Damien George2016-10-24
|
* docs/machine.SPI: Improve descriptions of xfer methods.Damien George2016-10-18
| | | | | In particular remove the "*" because not all ports support keyword arguments.
* docs/machine.SPI: Bring up to date with Hardware API, make vendor-neutral.Paul Sokolovsky2016-10-17
|
* docs: Bump version to 1.8.5.v1.8.5Damien George2016-10-17
|
* docs/reference: Add constrained.rst doc.Peter Hinch2016-10-11
| | | | | It contains detailed information about writing scripts to run efficiently on microcontrollers (and other constrained systems).
* docs/wipy: Correct deep sleep current figure.daniel2016-10-10
|
* docs/uos: Add uos.statvfs() documentation.Alex March2016-10-07
|