summaryrefslogtreecommitdiffstatshomepage
path: root/docs/library
Commit message (Collapse)AuthorAge
...
* docs/library/machine.UART: Remove pyboard-specific section.Damien George2017-04-18
| | | | stmhal doesn't have a machine.UART class so this section is not needed.
* docs/library/machine: Typo fix in machine_callbacks section.Paul Sokolovsky2017-04-16
|
* docs/machine: Move machine.main() misnomer to wipy's known issues.Paul Sokolovsky2017-04-16
|
* docs/machine.UART: Deconditionalize normal methods.Paul Sokolovsky2017-04-16
|
* docs/library/ussl: Deconditionalize, wipy notes moved to its documentation.Paul Sokolovsky2017-04-16
|
* docs/library/uos: urandom: Generalize description.Paul Sokolovsky2017-04-16
| | | | Don't give a guarantee of HW RNG, only a possibility of its usage.
* docs/library/micropython: Deconditionalize.Paul Sokolovsky2017-04-16
|
* docs/uhashlib: Deconditionalize.Paul Sokolovsky2017-04-09
| | | | | Notes on WiPy incompatibilities with the standard module API are moved under "Known issues" to its documentation.
* docs/usocket: Deconditionalize.Paul Sokolovsky2017-04-09
| | | | | Notes on WiPy incompatibilities with the standard socket module API are moved under "Known issues" to its documentation.
* docs/utime: Deconditionalize description of sleep().Paul Sokolovsky2017-04-09
|
* docs/library/machine.UART: Remove some conditionals.Paul Sokolovsky2017-04-09
|
* docs/library/builtins: int: Add notice on byteorder param for to/from_bytes.Paul Sokolovsky2017-04-09
|
* docs/machine.Pin: Move wipy-specific methods to its docs.Paul Sokolovsky2017-04-05
|
* docs/machine.Pin: Move wipy-specific details to its own docs.Paul Sokolovsky2017-04-05
|
* cc3200/modmachine: Return frequency value directly, like other ports.Paul Sokolovsky2017-04-05
|
* docs/machine.SPI: Remove outdated wipy chunk.Paul Sokolovsky2017-04-05
|
* docs/uos: De-conditionalize statvfs() description.Paul Sokolovsky2017-04-05
| | | | | It's a standard function, and it's already described (in the library intro) that for any given port, any function may be missing.
* docs/utime: De-conditionalize description of sleep_ms() and friends.Paul Sokolovsky2017-04-05
| | | | These are basic MicroPython API, and all ports should implement them.
* extmod/modframebuf: Make monochrome bitmap formats start with MONO_.Peter Hinch2017-04-04
| | | | | | | | MONO_xxx is much easier to read if you're not familiar with the code. MVLSB is deprecated but kept for backwards compatibility, for the time being. This patch also updates the associated docs and tests.
* docs/library/btree: Add btree module docs.Paul Sokolovsky2017-04-04
|
* docs/library/machine.I2C: Fix scan() doc to match implementation.transistortim2017-03-20
| | | | | Since eaef6b5324fa2ff425802d4abeea45aa945bfc14 writes are used instead of reads.
* utime module documentation fixes and cleanup:Christopher Arndt2017-03-17
| | | | | | | | | | | * Fix mis-spelling of `ticks_add` in code examples. * Be consistent about parentheses after function names. * Be consistent about formatting of function, variable and constant names. * Be consistent about spaces and punctuation. * Fix some language errors (missing or wrong words, wrong word order). * Keep line length under 90 chars. Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
* docs/library/framebuf: Fix typo in bit-width for MVLSB description.Damien George2017-03-15
|
* docs/library/lcd160cr: Add link to framebuf page.Rami Ali2017-03-07
|
* docs/library: Add framebuf documentation.Rami Ali2017-03-07
|
* docs/library/lcd160cr: Add note about supported JPEG format/encodings.Peter Hinch2017-02-28
|
* docs/machine: Fix formatting of Constants section.Paul Sokolovsky2017-02-28
| | | | Render related constants grouped together, with common description.
* docs/uhashlib: Provide port-neutral description.Paul Sokolovsky2017-02-26
| | | | TODO: Remove WiPy-specific chunks.
* docs/library/lcd160cr: Mention the valid values for set_power() method.Damien George2017-02-17
|
* docs/uos: Remove mention of uos.sep.Paul Sokolovsky2017-02-14
| | | | | | MicroPython guarantees '/' to be a path separator, so extra constant taking precious ROM space are not needed. MicroPython never had such constant, only one vendor port had it (now unmaintained).
* docs/library/machine: Make separate TOC for WiPy vs non-WiPy.Damien George2017-02-13
| | | | | WiPy is the only port with ADC and SD, so they shouldn't be included in other ports' documentation.
* docs/library/pyb.Pin: Minor typo fix, B6 should be A0.Dave Hylands2017-02-13
| | | | On the PYBv1.0, X1 maps to A0, not B6.
* stmhal: Add pyb.fault_debug() function, to control hard-fault behaviour.Damien George2017-02-06
| | | | | | | | | This new function controls what happens on a hard-fault: - debugging disabled: board will do a reset - debugging enabled: board will print registers and stack and flash LEDs The default is disabled, ie to do a reset. This is different to previous behaviour which flashed the LEDs and waited indefinitely.
* extmod/machine_pulse: Make time_pulse_us() not throw exceptions.Paul Sokolovsky2017-02-05
| | | | | | | | | | | | machine.time_pulse_us() is intended to provide very fine timing, including while working with signal bursts, where each transition is tracked in row. Throwing and handling an exception may take too much time and "signal loss". So instead, in case of a timeout, just return negative value. Cases of timeout while waiting for initial signal stabilization, and during actual timing, are recognized. The documentation is updated accordingly, and rewritten somewhat to clarify the function behavior.
* docs: For LCD160CR driver and tutorial, add link to positioning image.Damien George2017-02-03
|
* docs/uio: Typo fixes/lexical improvements.Paul Sokolovsky2017-01-29
|
* 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: 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/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
|
* docs/library/machine.I2C: Fix I2C constructor docs to match impl.Damien George2016-12-30
|