summaryrefslogtreecommitdiffstatshomepage
path: root/docs/library
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-06-09 03:03:53 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-06-09 03:03:53 +0300
commit79b40d11276b2b70b2eaa2fe0cac4d3d830c19e4 (patch)
tree6fac3aa3d59301d621896e7597bfbd12d810c43c /docs/library
parenta0c296f6d515b0a18306213cf64d9580875448f6 (diff)
downloadmicropython-79b40d11276b2b70b2eaa2fe0cac4d3d830c19e4.tar.gz
micropython-79b40d11276b2b70b2eaa2fe0cac4d3d830c19e4.zip
docs/machine*: Remove explicit targets and "machine." prefixes on classes.
With currentmodule:: set properly, none are needed. Extra "machine." prefix produces wrong indexing data.
Diffstat (limited to 'docs/library')
-rw-r--r--docs/library/machine.ADC.rst3
-rw-r--r--docs/library/machine.I2C.rst5
-rw-r--r--docs/library/machine.Pin.rst2
-rw-r--r--docs/library/machine.RTC.rst3
-rw-r--r--docs/library/machine.SD.rst3
-rw-r--r--docs/library/machine.SPI.rst3
-rw-r--r--docs/library/machine.Timer.rst3
-rw-r--r--docs/library/machine.UART.rst3
-rw-r--r--docs/library/machine.WDT.rst3
9 files changed, 10 insertions, 18 deletions
diff --git a/docs/library/machine.ADC.rst b/docs/library/machine.ADC.rst
index 11381e98b0..2752878ff3 100644
--- a/docs/library/machine.ADC.rst
+++ b/docs/library/machine.ADC.rst
@@ -1,5 +1,4 @@
.. currentmodule:: machine
-.. _machine.ADC:
class ADC -- analog to digital conversion
=========================================
@@ -15,7 +14,7 @@ Usage::
Constructors
------------
-.. class:: machine.ADC(id=0, \*, bits=12)
+.. class:: ADC(id=0, \*, bits=12)
Create an ADC object associated with the given pin.
This allows you to then read analog values on that pin.
diff --git a/docs/library/machine.I2C.rst b/docs/library/machine.I2C.rst
index 2f020f6d47..b3bfa68f07 100644
--- a/docs/library/machine.I2C.rst
+++ b/docs/library/machine.I2C.rst
@@ -1,5 +1,4 @@
.. currentmodule:: machine
-.. _machine.I2C:
class I2C -- a two-wire serial protocol
=======================================
@@ -45,14 +44,14 @@ Constructors
.. only:: port_wipy
- .. class:: machine.I2C(bus, ...)
+ .. class:: I2C(bus, ...)
Construct an I2C object on the given bus. `bus` can only be 0.
If the bus is not given, the default one will be selected (0).
.. only:: port_esp8266
- .. class:: machine.I2C(scl, sda, \*, freq=400000)
+ .. class:: I2C(scl, sda, \*, freq=400000)
Construct and return a new I2C object.
See the init method below for a description of the arguments.
diff --git a/docs/library/machine.Pin.rst b/docs/library/machine.Pin.rst
index 21e5323d5b..fdada2f383 100644
--- a/docs/library/machine.Pin.rst
+++ b/docs/library/machine.Pin.rst
@@ -58,7 +58,7 @@ Usage Model:
Constructors
------------
-.. class:: machine.Pin(id, ...)
+.. class:: Pin(id, ...)
Create a new Pin object associated with the id. If additional arguments are given,
they are used to initialise the pin. See :meth:`Pin.init`.
diff --git a/docs/library/machine.RTC.rst b/docs/library/machine.RTC.rst
index 219ca273d0..b6e98e9d1f 100644
--- a/docs/library/machine.RTC.rst
+++ b/docs/library/machine.RTC.rst
@@ -1,5 +1,4 @@
.. currentmodule:: machine
-.. _machine.RTC:
class RTC -- real time clock
============================
@@ -17,7 +16,7 @@ Example usage::
Constructors
------------
-.. class:: machine.RTC(id=0, ...)
+.. class:: RTC(id=0, ...)
Create an RTC object. See init for parameters of initialization.
diff --git a/docs/library/machine.SD.rst b/docs/library/machine.SD.rst
index 330ef217ae..21c28aa200 100644
--- a/docs/library/machine.SD.rst
+++ b/docs/library/machine.SD.rst
@@ -1,5 +1,4 @@
.. currentmodule:: machine
-.. _machine.SD:
class SD -- secure digital memory card
======================================
@@ -25,7 +24,7 @@ Example usage::
Constructors
------------
-.. class:: machine.SD(id,... )
+.. class:: SD(id,... )
Create a SD card object. See ``init()`` for parameters if initialization.
diff --git a/docs/library/machine.SPI.rst b/docs/library/machine.SPI.rst
index 8e66660768..f3c95181dc 100644
--- a/docs/library/machine.SPI.rst
+++ b/docs/library/machine.SPI.rst
@@ -1,5 +1,4 @@
.. currentmodule:: machine
-.. _machine.SPI:
class SPI -- a master-driven serial protocol
============================================
@@ -24,7 +23,7 @@ Constructors
.. only:: port_wipy
- .. class:: machine.SPI(id, ...)
+ .. class:: SPI(id, ...)
Construct an SPI object on the given bus. ``id`` can be only 0.
With no additional parameters, the SPI object is created but not
diff --git a/docs/library/machine.Timer.rst b/docs/library/machine.Timer.rst
index 0e596588eb..344d1ea86e 100644
--- a/docs/library/machine.Timer.rst
+++ b/docs/library/machine.Timer.rst
@@ -1,5 +1,4 @@
.. currentmodule:: machine
-.. _machine.Timer:
class Timer -- control internal timers
======================================
@@ -60,7 +59,7 @@ class Timer -- control internal timers
Constructors
------------
-.. class:: machine.Timer(id, ...)
+.. class:: Timer(id, ...)
.. only:: port_wipy
diff --git a/docs/library/machine.UART.rst b/docs/library/machine.UART.rst
index 594a11dce9..27a8801900 100644
--- a/docs/library/machine.UART.rst
+++ b/docs/library/machine.UART.rst
@@ -1,5 +1,4 @@
.. currentmodule:: machine
-.. _machine.UART:
class UART -- duplex serial communication bus
=============================================
@@ -59,7 +58,7 @@ Constructors
.. only:: port_wipy
- .. class:: machine.UART(bus, ...)
+ .. class:: UART(bus, ...)
Construct a UART object on the given bus. ``bus`` can be 0 or 1.
If the bus is not given, the default one will be selected (0) or the selection
diff --git a/docs/library/machine.WDT.rst b/docs/library/machine.WDT.rst
index 10e6af0e14..d7c801356e 100644
--- a/docs/library/machine.WDT.rst
+++ b/docs/library/machine.WDT.rst
@@ -1,5 +1,4 @@
.. currentmodule:: machine
-.. _machine.WDT:
class WDT -- watchdog timer
===========================
@@ -18,7 +17,7 @@ Example usage::
Constructors
------------
-.. class:: machine.WDT(id=0, timeout=5000)
+.. class:: WDT(id=0, timeout=5000)
Create a WDT object and start it. The timeout must be given in seconds and
the minimum value that is accepted is 1 second. Once it is running the timeout