diff options
author | Howard Lovatt <howard.lovatt@gmail.com> | 2020-07-02 11:08:25 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2020-07-25 00:28:16 +1000 |
commit | cf9be201d780eedcdb8a6c05f5ea7c796f892f07 (patch) | |
tree | dffa04643de1b0f45c39dc24ab4442c74ec3ae66 /docs | |
parent | caaaa2b1f4645b72929a957cf5ceed182e619f4c (diff) | |
download | micropython-cf9be201d780eedcdb8a6c05f5ea7c796f892f07.tar.gz micropython-cf9be201d780eedcdb8a6c05f5ea7c796f892f07.zip |
docs/library: Update pyb.SPI init method to add descr about "ti" arg.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/library/pyb.SPI.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/library/pyb.SPI.rst b/docs/library/pyb.SPI.rst index a1910be49b..181bdd3b6e 100644 --- a/docs/library/pyb.SPI.rst +++ b/docs/library/pyb.SPI.rst @@ -64,6 +64,7 @@ Methods respectively. - ``bits`` can be 8 or 16, and is the number of bits in each transferred word. - ``firstbit`` can be ``SPI.MSB`` or ``SPI.LSB``. + - ``ti`` True indicates Texas Instruments, as opposed to Motorola, signal conventions. - ``crc`` can be None for no CRC, or a polynomial specifier. Note that the SPI clock frequency will not always be the requested baudrate. |