summaryrefslogtreecommitdiff
path: root/docs/library
AgeCommit message (Collapse)Author
2020-07-06Fix minor typo in MicroPython libraries pageTyler Crumpton
2020-04-09network.rst: remove duplicate method directivesommersoft
2019-07-28add ':noindex:' to micropy's 'network.rst' to avoid sphinx conflictsommersoft
2019-06-18Fix references to cpython in builtins documentation.Craig Forbes
2019-01-13Fresh combined checkin of _pixelbuf library.Roy Hooper
2018-10-11update documentation and translations againNick Moore
2018-07-29remove qemu-arm build; fix docs build bugsDan Halbert
2018-07-23WIP: complete manual inspection of all significant changesDan Halbert
2018-07-11WIP: after merge; before testingDan Halbert
2018-05-23typos in builtins.rstDan Halbert
2018-05-23use shared-bindings struct doc; remove docs/library oneDan Halbert
2018-05-22fix title underlineDan Halbert
2018-05-22add caveat language re MicroPython libraries; other slight changesDan Halbert
2018-05-22RTD documentation updatesDan Halbert
2018-05-21stm32/rtc: Don't try to set SubSeconds value on RTC.Damien George
The hardware doesn't allow it, instead the value is reset to 255 upon setting the other calendar/time values.
2018-05-15Merge branch 'master' of github.com:adafruit/circuitpythonRoy Hooper
2018-05-14Initial implementation of supervisor.reload()Roy Hooper
2018-05-14Update docs s/ucollections/collections/gbildzeitung
2018-05-06docs: fix references to uhashlibJeff Epler
2018-05-03docs: fix references to ubinasciiJeff Epler
2018-04-26docs/library: Add ussl module to library index for unix port.Damien George
2018-04-20docs/library/pyb.ADC: Fix typo of "prarmeter".Damien George
2018-04-20docs/library/pyb.ADC: Remove outdated ADCAll code example.Peter Hinch
2018-04-11stm32/dac: Add buffering argument to constructor and init() method.Damien George
This can be used to select the output buffer behaviour of the DAC. The default values are chosen to retain backwards compatibility with existing behaviour. Thanks to @peterhinch for the initial idea to add this feature.
2018-04-11stm32/adc: Optimise read_timed_multi() by caching buffer pointers.Damien George
2018-04-11stm32/adc: Add read_timed_multi() static method, with docs and tests.Peter Hinch
2018-04-10docs/library/pyb.ADC.rst: Document new features for ADCAll.T S
2018-03-19stm32/can: Add "list" param to CAN.recv() to receive data inplace.Damien George
This API matches (as close as possible) how other pyb classes allow inplace operations, such as pyb.SPI.recv(buf).
2018-03-16docs/library/pyb.CAN: Clean up documentation of data constants.Damien George
2018-03-16stm32/can: Add CAN.info() method to retrieve error and tx/rx buf info.Damien George
2018-03-16stm32/can: Add CAN.state() method to get the state of the controller.Damien George
This is useful for monitoring errors on the bus and knowing when a restart is needed.
2018-03-15stm32/can: Add CAN.restart() method so controller can leave bus-off.Damien George
2018-03-15stm32/can: Add "auto_restart" option to constructor and init() method.Damien George
2018-03-15docs/library/pyb.CAN: Update markup to use latest doc conventions.Damien George
2018-03-15docs: Fix some references and RST markup to eliminate Sphinx warnings.Damien George
2018-03-12extmod/vfs_fat: Add file size as 4th element of uos.ilistdir tuple.Tom Collins
2018-03-07docs/library/uos: Document mount, umount, VfsFat and block devices.Damien George
2018-03-07docs/library/uos: Create sections for distinct parts and document uname.Damien George
2018-03-05docs/library/micropython: Describe optimisation levels for opt_level().Damien George
2018-03-05docs/library/usocket: Make xref to uerrno explicitly a module reference.Damien George
2018-02-27Merge remote-tracking branch 'adafruit/2.x' into merge_2xScott Shawcroft
2018-02-26esp8266/modnetwork: Implement WLAN.status('rssi') for STA interface.Damien George
This will return the RSSI of the AP that the STA is connected to.
2018-02-20Delete a bunch of docs, drivers and examples not relevant to CircuitPython.Scott Shawcroft
This fixes #345 and fixes #215.
2018-02-15docs/library/ujson: Document dump() and load() functions.Damien George
2018-02-15docs/library/ujson: Update to conform with docs conventions.Damien George
The formatting of exception objects is done as per CPython conventions, eg: :exc:`TypeError`
2018-02-01docs/library/pyb.rst: Add note about availability of USB MSC-only mode.Damien George
2017-12-23docs/library/index: Elaborate uPy libraries intro.Paul Sokolovsky
2017-12-14extmod/modframebuf: Add 8-bit greyscale format (GS8).Damien George
2017-12-14extmod/modframebuf: Add 2-bit color format (GS2_HMSB).Petr Viktorin
This format is used in 2-color LED matrices and in e-ink displays like SSD1606.
2017-12-04docs/library: Add xrefs to "stream" dictionary entry for many modules.Paul Sokolovsky