summaryrefslogtreecommitdiffstatshomepage
path: root/docs/library/pyb.SPI.rst
Commit message (Collapse)AuthorAge
* docs/library: Remove unnecessary "pyb." prefix on class names.Damien George2022-06-21
| | | | | | | Otherwise these classes are refered to with a double prefix, like pyb.pyb.ADC. Signed-off-by: Damien George <damien@micropython.org>
* docs/library/pyb.SPI.rst: Document default for prescaler argument.Jos Verlinde2022-02-09
| | | | To prevent "non-default argument follows default argument" errors.
* docs: Replace master/slave with controller/peripheral in I2C and SPI.David P2021-07-18
| | | | See https://www.oshwa.org/a-resolution-to-redefine-spi-signal-names
* all: Replace busses with buses.Mike Causer2021-05-20
| | | | "buses" is the widely accepted plural form of "bus".
* docs: Change `\*` to `*` in argument lists.Zenix272020-08-21
| | | | | | | Latest versions of Sphinx (at least 3.1.0) do not need the `*` escaped and will render the `\` in the output if it is there, so remove it. Fixes issue #6209.
* docs/library: Update pyb.SPI init method to add descr about "ti" arg.Howard Lovatt2020-07-25
|
* docs/library: Remove "only" directive from all pyb module docs.Damien George2018-07-18
| | | | | | | | | | | | | By virtue of its name, the pyb module would only be available on a pyboard and so does not need to have conditional "only" directives throughout its documentation. These conditionals were added mostly in cfcf47c0644952358e1a260db159e807872a37e6 in the initial development of the cc3200 port, which had the pyb module before it switched to the machine module. And wipy only conditionals were removed from the pyb module documentation in 4542643025c77a7272bde348b89d5039aea28d23, so there's no need to retain any more conditionals.
* docs/library/pyb.SPI: init(): Describe "bits" argument.Paul Sokolovsky2016-09-18
| | | | Based on https://github.com/micropython/micropython/pull/2210 .
* docs/pyb.*: Use proper class case in method headers.Paul Sokolovsky2016-06-08
| | | | | Class designator will be used as is in indexes, so must match actual class name.
* docs/pyb.*: Add "currentmodule:: pyb" directive.Paul Sokolovsky2016-06-08
| | | | | Makes sure that classes described in these separate files are properly designated as belonging to "pyb" module in indexes.
* docs: Mention that pyb.SPI constructor accepts "X" and "Y" arguments.Peter Hinch2016-03-17
|
* docs: Update all WiPy docs to reflect the new API.danicampora2015-10-17
|
* cc3200: New SPI API.Daniel Campora2015-09-16
|
* cc3200: Rename SPI nss param to cs.Daniel Campora2015-08-16
| | | | | The nss param in the pyboard has a different meaning that doesn't apply to the WiPy.
* cc3200: Make I2C and SPI API the same as in stmhal.Daniel Campora2015-08-02
|
* docs: Add initial draft documentation for the WiPy.Daniel Campora2015-06-10
| | | | This makes all common files "port-aware" using the .. only directive.
* stmhal: Allow SPI.init to specify prescaler directly; improve SPI docs.Damien George2014-12-08
|
* docs: Add links from quickref to pyb classes.Damien George2014-11-04
|
* docs: Make custom index page; add more docs.Damien George2014-11-02
|
* docs: Cleanup and update some docs.Damien George2014-10-31
|
* docs: Import documentation from source-code inline comments.Damien George2014-10-31
The inline docs (prefixed with /// in .c files) have been converted to RST format and put in the docs subdirectory.