summaryrefslogtreecommitdiff
path: root/shared-bindings/bitbangio/__init__.c
diff options
context:
space:
mode:
Diffstat (limited to 'shared-bindings/bitbangio/__init__.c')
-rw-r--r--shared-bindings/bitbangio/__init__.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/shared-bindings/bitbangio/__init__.c b/shared-bindings/bitbangio/__init__.c
index e9600a7e6..e04bdf701 100644
--- a/shared-bindings/bitbangio/__init__.c
+++ b/shared-bindings/bitbangio/__init__.c
@@ -40,12 +40,7 @@
#include "py/runtime.h"
-//| """:mod:`bitbangio` --- Digital protocols implemented by the CPU
-//| =============================================================
-//|
-//| .. module:: bitbangio
-//| :synopsis: Digital protocols implemented by the CPU
-//| :platform: SAMD21, ESP8266
+//| """Digital protocols implemented by the CPU
//|
//| The `bitbangio` module contains classes to provide digital bus protocol
//| support regardless of whether the underlying hardware exists to use the
@@ -55,15 +50,6 @@
//| hardware to implement the protocols. Native implementations will be faster
//| than bitbanged versions and have more capabilities.
//|
-//| Libraries
-//|
-//| .. toctree::
-//| :maxdepth: 3
-//|
-//| I2C
-//| OneWire
-//| SPI
-//|
//| All classes change hardware state and should be deinitialized when they
//| are no longer needed if the program continues after use. To do so, either
//| call :py:meth:`!deinit` or use a context manager. See