Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | docs/gc: Document gc.threshold() function. | Paul Sokolovsky | 2017-06-24 | |
| | ||||
* | docs/gc: Mark mem_alloc()/mem_free() as uPy-specific. | Paul Sokolovsky | 2017-06-24 | |
| | ||||
* | docs/conf.py: Include 3 levels of ToC in latexpdf output. | Paul Sokolovsky | 2017-06-24 | |
| | | | | | Instead of default 2. 3 are required to access description of individual library modules. | |||
* | docs/esp8266/tutorial/intro: Sphinx requires blank lines around literal blocks. | Paul Sokolovsky | 2017-06-23 | |
| | | | | At least, Sphinx 1.3.6. | |||
* | docs/esp8266/tutorial/intro: Discourage use of 512kb firmwares. | Paul Sokolovsky | 2017-06-23 | |
| | | | | This follows similar warnings in other parts of docs. | |||
* | docs/license: Update copyright year. | Paul Sokolovsky | 2017-06-23 | |
| | ||||
* | docs/select: Rename to uselect, to match the actual module name. | Paul Sokolovsky | 2017-06-16 | |
| | | | | | Also, add ipoll() documentation and markup changes to comply with CPython usage. | |||
* | stmhal: Add .value() method to Switch object, to mirror Pin and Signal. | Damien George | 2017-06-15 | |
| | ||||
* | docs/btree: Typo/wording fixes. | Paul Sokolovsky | 2017-06-11 | |
| | ||||
* | docs/btree: Add hints about opening db file and need to flush db. | Paul Sokolovsky | 2017-06-11 | |
| | ||||
* | docs: Bump version to 1.9.1.v1.9.1 | Damien George | 2017-06-11 | |
| | ||||
* | docs/network: First step to describe standard network class interface. | Paul Sokolovsky | 2017-06-04 | |
| | | | | | | | | This adds description of implied AbstractNIC base class, which should be "subclasses" and implemented by a particular network device class. This is just an initial step in that direction, the API and description will be elabotated further. | |||
* | docs/machine: Sort machine classes in logical order, not alphabetically. | Paul Sokolovsky | 2017-06-03 | |
| | | | | | | The list starts with the simplest functionality - GPIO, proceeds to communication interfaces (UART, SPI, I2C), the to time(r) related things, then everything else. | |||
* | docs/uos: Move cc3200 port legacy VFS mounting functions to its ref doc. | Paul Sokolovsky | 2017-06-03 | |
| | | | | | This patch also unconditionalizes uos.dupterm(), though exact interface and semantics is yet to be defined. | |||
* | docs/uos: Deconditionalize, remove minor port-specific details. | Paul Sokolovsky | 2017-06-03 | |
| | | | | | | | | | For a couple of ports, there was information which directory is set as current after boot. This information doesn't belong to "uos" module, and is moved to boards' references (which actually already contained information on which directory is chosen for boot, even if without explicit mentioning that it becomes current directory, which is now done). | |||
* | docs/network: Move confusingly-named cc3200 Server class to its reference. | Paul Sokolovsky | 2017-06-03 | |
| | | | | | cc3200 port has network.Server class to control behavior of builtin Telnet/FTP server of that port. | |||
* | docs/esp8266/quickref: Polish Pin.on()/off() examples. | Paul Sokolovsky | 2017-06-02 | |
| | ||||
* | docs/esp8266: Consistently replace Pin.high/low methods with .on/off. | Paul Sokolovsky | 2017-05-30 | |
| | ||||
* | docs/machine.Pin: Add on() and off() methods. | Paul Sokolovsky | 2017-05-29 | |
| | ||||
* | docs/machine.Pin: Remove out_value() method. | Paul Sokolovsky | 2017-05-29 | |
| | | | | | | | | This method isn't implemented in any port. It seemed to have originated in cc3200 port, but actually never was implemented there either. In general case, it's impossible to implement this method (for example, for a perfect GPO, which has only output latch without any feedback look into a CPU). | |||
* | various: Spelling fixes | Ville Skyttä | 2017-05-29 | |
| | ||||
* | docs: Bump version to 1.9.v1.9 | Damien George | 2017-05-26 | |
| | ||||
* | library/machine.Pin: Remove .id() method and .board class attr. | Paul Sokolovsky | 2017-05-21 | |
| | | | | | | | 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. | |||
* | docs/library/machine.UART: Update and improve uart.any() docs. | Damien George | 2017-05-19 | |
| | ||||
* | docs/library/micropython: Document the newer micropython functions. | Damien George | 2017-05-18 | |
| | ||||
* | drivers/display/lcd160cr: Fix get_line method and enhance screen_dump. | Damien George | 2017-05-17 | |
| | | | | The docs are updated and describe the new behaviour of these methods. | |||
* | docs: Change single occurrence of "Micropython" to "MicroPython". | Damien George | 2017-05-17 | |
| | ||||
* | docs/library/index: Add important summary of the intro section as warning. | Paul Sokolovsky | 2017-05-15 | |
| | | | | To make them harder to miss. | |||
* | 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 | 2017-05-14 | |
| | | | | | May be a port-specific method, not portable, not part of the official specification. | |||
* | docs/library/uos: Add description of uos.ilistdir() function. | Damien George | 2017-05-10 | |
| | ||||
* | 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 | 2017-04-18 | |
| | | | | cc3200 has been updated to conform to the API and now returns None. | |||
* | 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 | 2017-04-18 | |
| | | | | | The cc3200 port is now similar enough to the standard machine.I2C API so that all conditionals can be removed. | |||
* | 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 | 2017-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 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 | 2017-04-16 | |
| | | | | Don't give a guarantee of HW RNG, only a possibility of its usage. | |||
* | docs/library/micropython: Deconditionalize. | Paul Sokolovsky | 2017-04-16 | |
| | ||||
* | docs/esp8266/tutorial/intro: Reword section on flash size requirement. | Paul Sokolovsky | 2017-04-14 | |
| | | | | | Give a clearly dissuading tone on end users trying 512KB version - it has to many end-usery features lacking. | |||
* | docs/uhashlib: Deconditionalize. | Paul Sokolovsky | 2017-04-09 | |
| | | | | | Notes on WiPy incompatibilities with the standard module API are moved under "Known issues" to its documentation. | |||
* | docs/usocket: Deconditionalize. | Paul Sokolovsky | 2017-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 Sokolovsky | 2017-04-09 | |
| | ||||
* | docs/library/machine.UART: Remove some conditionals. | Paul Sokolovsky | 2017-04-09 | |
| |