Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-02-14 | docs/uos: Remove mention of uos.sep. | Paul Sokolovsky | |
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). | |||
2017-02-13 | docs/library/machine: Make separate TOC for WiPy vs non-WiPy. | Damien George | |
WiPy is the only port with ADC and SD, so they shouldn't be included in other ports' documentation. | |||
2017-02-13 | docs/library/pyb.Pin: Minor typo fix, B6 should be A0. | Dave Hylands | |
On the PYBv1.0, X1 maps to A0, not B6. | |||
2017-02-06 | stmhal: Add pyb.fault_debug() function, to control hard-fault behaviour. | Damien George | |
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. | |||
2017-02-05 | extmod/machine_pulse: Make time_pulse_us() not throw exceptions. | Paul Sokolovsky | |
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. | |||
2017-02-03 | docs: For LCD160CR driver and tutorial, add link to positioning image. | Damien George | |
2017-01-29 | docs/uio: Typo fixes/lexical improvements. | Paul Sokolovsky | |
2017-01-28 | docs/uio: Describe differences between uPy an CPy stream hierarchy. | Paul Sokolovsky | |
2017-01-28 | docs/usocket: Dedent Methods section. | Paul Sokolovsky | |
This was apparently of an ::only directive which was later removed. | |||
2017-01-28 | docs/usocket: Clarify description of various methods. | Paul Sokolovsky | |
2017-01-28 | docs/usocket: Elaborate "Constants" section. | Paul Sokolovsky | |
2017-01-28 | docs/usocket: Clarify exceptions used. | Paul Sokolovsky | |
2017-01-28 | docs/machine: Add explicit note on machine module level and scope. | Paul Sokolovsky | |
It's very low, hardware level, with associated constraints on operations and callbacks. | |||
2017-01-28 | docs/machine.Timer: Move WiPy adhoc parts to its documentation. | Paul Sokolovsky | |
2017-01-24 | docs/library/lcd160cr: Fix set_brightness range, should be 0..31. | Damien George | |
2017-01-23 | docs: Add documentation for lcd160cr module. | Damien George | |
2017-01-18 | docs: Fix some minor spelling mistakes. | Mike Causer | |
paramter -> parameter send a receive -> send and receive repsonse -> response particualr -> particular constructore -> constructor | |||
2017-01-07 | docs/usocket: Clarify that socket timeout raises OSError exception. | Paul Sokolovsky | |
2017-01-06 | docs/library/esp: Remove para and add further warning about flash. | Damien George | |
There is no longer space reserved by default for native code. | |||
2017-01-04 | docs/library/esp: Document esp.set_native_code_location() function. | Damien George | |
2016-12-30 | docs/library/machine.I2C: Fix I2C constructor docs to match impl. | Damien George | |
2016-12-15 | docs/library/pyb.UART: Moved writechar doc to sit with other writes. | Lorenz Schmid | |
2016-12-15 | docs/library/pyb.UART: Added clarification about timeouts. | Lorenz Schmid | |
2016-12-02 | docs/library/pyb.Accel: Add hardware note about pins used by accel. | Peter Hinch | |
2016-11-23 | docs/library/machine.I2C: Refine definitions of I2C methods. | Damien George | |
2016-11-16 | docs/library/index: Elaborate on u-modules. | Paul Sokolovsky | |
Also, remove an "only" directive in u-modules description. | |||
2016-11-14 | docs: Remove references to readall() and update stream read() docs. | Damien George | |
2016-11-11 | stmhal/i2c: Add option to I2C to enable/disable use of DMA transfers. | Damien George | |
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). | |||
2016-11-09 | docs/library/machine.Pin: Update Pin docs to align with new HW API. | Damien George | |
2016-11-01 | docs/utime: Add docs for ticks_add(), improvements for other ticks_*(). | Paul Sokolovsky | |
2016-11-01 | docs/utime: Remove only:: for ticks_diff(). | Paul Sokolovsky | |
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. | |||
2016-10-31 | docs/utime: Describe new semantics of ticks_diff() (signed ring arithmetics). | Paul Sokolovsky | |
2016-10-30 | docs/utime: Document ticks_cpu() in more detail. | Paul Sokolovsky | |
Also, drop ::only directive. | |||
2016-10-30 | docs/library/index: Update TOCs so builtins sorted before modules. | Paul Sokolovsky | |
2016-10-28 | docs/library/network: Typo fixes, consistent acronym capitalization. | Paul Sokolovsky | |
2016-10-28 | docs/library/network: Reword intro paragraph. | Paul Sokolovsky | |
2016-10-25 | docs/machine.SPI.rst: Fix typos and formatting, clarify. | Paul Sokolovsky | |
Clarify the class implements master side of the protocol, also put adhoc WiPy paramter after the generic, described in the current Hardware API version. | |||
2016-10-25 | docs/library/builtins: Add docs for delattr and slice. | Damien George | |
2016-10-24 | docs/library/machine.SPI: Remove spurious "of". | Damien George | |
2016-10-18 | docs/machine.SPI: Improve descriptions of xfer methods. | Damien George | |
In particular remove the "*" because not all ports support keyword arguments. | |||
2016-10-17 | docs/machine.SPI: Bring up to date with Hardware API, make vendor-neutral. | Paul Sokolovsky | |
2016-10-07 | docs/uos: Add uos.statvfs() documentation. | Alex March | |
2016-10-04 | stmhal/usb: Add support to receive USB HID messages from host. | Philip Potter | |
2016-09-28 | extmod/machine_i2c: Add support for the addrsize parameter in mem xfers. | Radomir Dopieralski | |
The memory read/write I2C functions now take an optional keyword-only parameter that specifies the number of bits in the memory address. Only mem-addrs that are a multiple of 8-bits are supported (otherwise the behaviour is undefined). Due to the integer type used for the address, for values larger than 32 bits, only 32 bits of address will be sent, and the rest will be padded with 0s. Right now no exception is raised when that happens. For values smaller than 8, no address is sent. Also no exception then. Tested with a VL6180 sensor, which has 16-bit register addresses. Due to code refactoring, this patch reduces stmhal and esp8266 builds by about 50 bytes. | |||
2016-09-23 | docs/library/machine: Update description of disable/enable IRQ funcs. | Damien George | |
2016-09-18 | docs/library/pyb.SPI: init(): Describe "bits" argument. | Paul Sokolovsky | |
Based on https://github.com/micropython/micropython/pull/2210 . | |||
2016-09-08 | stmhal,cc3200,esp8266: Consistently use PWRON_RESET constant. | Damien George | |
machine.POWER_ON is renamed to machine.PWRON_RESET to match other reset-cause constants that all end in _RESET. The cc3200 port keeps a legacy definition of POWER_ON for backwards compatibility. | |||
2016-09-06 | docs/library/machine.WDT: Add that WDT is available on pyboard. | Damien George | |
2016-08-29 | docs/library: Add reference for pyb.usb_mode and pyb.USB_HID. | Philip Potter | |
2016-08-17 | docs/library/machine.WDT: Add note that WDT is only available on WiPy. | Damien George | |