| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-05-29 | various: Spelling fixes | Ville Skyttä | |
| 2017-05-26 | docs: Bump version to 1.9. | Damien George | |
| 2017-05-21 | library/machine.Pin: Remove .id() method and .board class attr. | Paul Sokolovsky | |
| Both aren't part of generic Hardware API: It's impossible to implement .id() method in a generic case (e.g., when Pin is instantiated by the underlying OS/RTOS). .board attribute is an obvious space hog which instead can be implemented on Python level if needed. | |||
| 2017-05-19 | docs/library/machine.UART: Update and improve uart.any() docs. | Damien George | |
| 2017-05-18 | docs/library/micropython: Document the newer micropython functions. | Damien George | |
| 2017-05-17 | drivers/display/lcd160cr: Fix get_line method and enhance screen_dump. | Damien George | |
| The docs are updated and describe the new behaviour of these methods. | |||
| 2017-05-17 | docs: Change single occurrence of "Micropython" to "MicroPython". | Damien George | |
| 2017-05-15 | docs/library/index: Add important summary of the intro section as warning. | Paul Sokolovsky | |
| To make them harder to miss. | |||
| 2017-05-14 | docs/machine.Signal: Add initial draft description of Signal class. | Paul Sokolovsky | |
| 2017-05-14 | docs/machine.Pin: There's no toggle() method in MicroPython hardware API. | Paul Sokolovsky | |
| May be a port-specific method, not portable, not part of the official specification. | |||
| 2017-05-10 | docs/library/uos: Add description of uos.ilistdir() function. | Damien George | |
| 2017-04-18 | docs/library/machine.SPI: Fix formatting of bullet list to stop warning. | Damien George | |
| 2017-04-18 | docs/library/machine.I2C: Remove WiPy-specific return values. | Damien George | |
| cc3200 has been updated to conform to the API and now returns None. | |||
| 2017-04-18 | docs/esp8266/quickref: Add links from quickref page to machine classes. | Damien George | |
| 2017-04-18 | docs/library/machine.*: Add cross-reference label to individual classes. | Damien George | |
| 2017-04-18 | docs/library/machine.I2C: Deconditionalise all methods. | Damien George | |
| The cc3200 port is now similar enough to the standard machine.I2C API so that all conditionals can be removed. | |||
| 2017-04-18 | docs/wipy/general: Add section about specifics of I2C implementation. | Damien George | |
| 2017-04-18 | docs/wipy/quickref: Update reference for change to I2C API. | Damien George | |
| 2017-04-18 | docs/library/machine.UART: Remove pyboard-specific section. | Damien George | |
| stmhal doesn't have a machine.UART class so this section is not needed. | |||
| 2017-04-16 | docs/library/machine: Typo fix in machine_callbacks section. | Paul Sokolovsky | |
| 2017-04-16 | docs/machine: Move machine.main() misnomer to wipy's known issues. | Paul Sokolovsky | |
| 2017-04-16 | docs/machine.UART: Deconditionalize normal methods. | Paul Sokolovsky | |
| 2017-04-16 | docs/library/ussl: Deconditionalize, wipy notes moved to its documentation. | Paul Sokolovsky | |
| 2017-04-16 | docs/library/uos: urandom: Generalize description. | Paul Sokolovsky | |
| Don't give a guarantee of HW RNG, only a possibility of its usage. | |||
| 2017-04-16 | docs/library/micropython: Deconditionalize. | Paul Sokolovsky | |
| 2017-04-14 | docs/esp8266/tutorial/intro: Reword section on flash size requirement. | Paul Sokolovsky | |
| Give a clearly dissuading tone on end users trying 512KB version - it has to many end-usery features lacking. | |||
| 2017-04-09 | docs/uhashlib: Deconditionalize. | Paul Sokolovsky | |
| Notes on WiPy incompatibilities with the standard module API are moved under "Known issues" to its documentation. | |||
| 2017-04-09 | docs/usocket: Deconditionalize. | Paul Sokolovsky | |
| Notes on WiPy incompatibilities with the standard socket module API are moved under "Known issues" to its documentation. | |||
| 2017-04-09 | docs/utime: Deconditionalize description of sleep(). | Paul Sokolovsky | |
| 2017-04-09 | docs/library/machine.UART: Remove some conditionals. | Paul Sokolovsky | |
| 2017-04-09 | docs/library/builtins: int: Add notice on byteorder param for to/from_bytes. | Paul Sokolovsky | |
| 2017-04-07 | docs/esp8266/general: Start explicit "Known Issues", mentioned RTC inaccuracy. | Paul Sokolovsky | |
| 2017-04-05 | docs/machine.Pin: Move wipy-specific methods to its docs. | Paul Sokolovsky | |
| 2017-04-05 | docs/machine.Pin: Move wipy-specific details to its own docs. | Paul Sokolovsky | |
| 2017-04-05 | cc3200/modmachine: Return frequency value directly, like other ports. | Paul Sokolovsky | |
| 2017-04-05 | docs/machine.SPI: Remove outdated wipy chunk. | Paul Sokolovsky | |
| 2017-04-05 | docs/uos: De-conditionalize statvfs() description. | Paul Sokolovsky | |
| It's a standard function, and it's already described (in the library intro) that for any given port, any function may be missing. | |||
| 2017-04-05 | docs/utime: De-conditionalize description of sleep_ms() and friends. | Paul Sokolovsky | |
| These are basic MicroPython API, and all ports should implement them. | |||
| 2017-04-04 | extmod/modframebuf: Make monochrome bitmap formats start with MONO_. | Peter Hinch | |
| 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. | |||
| 2017-04-04 | docs/library/btree: Add btree module docs. | Paul Sokolovsky | |
| 2017-03-20 | docs/library/machine.I2C: Fix scan() doc to match implementation. | transistortim | |
| Since eaef6b5324fa2ff425802d4abeea45aa945bfc14 writes are used instead of reads. | |||
| 2017-03-17 | utime module documentation fixes and cleanup: | Christopher Arndt | |
| * 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> | |||
| 2017-03-15 | docs/library/framebuf: Fix typo in bit-width for MVLSB description. | Damien George | |
| 2017-03-07 | docs/esp8266/tutorial: Update since esptool 1.3 added Python 3 support. | James Ouyang | |
| esptool 1.3 now supports both Python 2.7 and 3.4+. Updated github link to now-official espressif repo. | |||
| 2017-03-07 | docs/library/lcd160cr: Add link to framebuf page. | Rami Ali | |
| 2017-03-07 | docs/library: Add framebuf documentation. | Rami Ali | |
| 2017-02-28 | docs/library/lcd160cr: Add note about supported JPEG format/encodings. | Peter Hinch | |
| 2017-02-28 | docs/machine: Fix formatting of Constants section. | Paul Sokolovsky | |
| Render related constants grouped together, with common description. | |||
| 2017-02-27 | docs/Makefile: define and use PYTHON as the interpreter for CPYDIFF | Krzysztof Blazewicz | |
| User can override PYTHON executable before running script, gen-cpydiff.py works only with Python3 and most systems register its executable as 'python3'. | |||
| 2017-02-26 | docs/uhashlib: Provide port-neutral description. | Paul Sokolovsky | |
| TODO: Remove WiPy-specific chunks. | |||
