summaryrefslogtreecommitdiffstatshomepage
path: root/docs
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-04-05 11:47:15 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-04-05 11:47:15 +0300
commit4333b2fb539b60b7f536db70a63595620919b3b6 (patch)
treea9800fbb97c4ddfcef007aea10681f501b626d61 /docs
parent906d58f6f29e9a293e2a7cd3485d9191614c66df (diff)
downloadmicropython-4333b2fb539b60b7f536db70a63595620919b3b6.tar.gz
micropython-4333b2fb539b60b7f536db70a63595620919b3b6.zip
docs/machine.SPI: Remove outdated wipy chunk.
Diffstat (limited to 'docs')
-rw-r--r--docs/library/machine.SPI.rst12
1 files changed, 0 insertions, 12 deletions
diff --git a/docs/library/machine.SPI.rst b/docs/library/machine.SPI.rst
index e8a8a2d8cc..82858629f3 100644
--- a/docs/library/machine.SPI.rst
+++ b/docs/library/machine.SPI.rst
@@ -10,18 +10,6 @@ SS (Slave Select), to select a particular device on a bus with which
communication takes place. Management of an SS signal should happen in
user code (via machine.Pin class).
-.. only:: port_wipy
-
- See usage model of I2C; SPI is very similar. Main difference is
- parameters to init the SPI bus::
-
- from machine import SPI
- spi = SPI(0, mode=SPI.MASTER, baudrate=1000000, polarity=0, phase=0, firstbit=SPI.MSB)
-
- Only required parameter is mode, must be SPI.MASTER. Polarity can be 0 or
- 1, and is the level the idle clock line sits at. Phase can be 0 or 1 to
- sample data on the first or second clock edge respectively.
-
Constructors
------------