diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-05-29 20:51:30 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-05-29 20:51:30 +0300 |
commit | 3496d9e4bd39452484d8a99e991ef7c0a92d5b51 (patch) | |
tree | 3d62440d8b348337b8eaf543f6ee5b90095a3a85 /docs/library/machine.Pin.rst | |
parent | ca16c3821053e5bf2b87aeb10007f73f31dc1eac (diff) | |
download | micropython-3496d9e4bd39452484d8a99e991ef7c0a92d5b51.tar.gz micropython-3496d9e4bd39452484d8a99e991ef7c0a92d5b51.zip |
docs/machine.Pin: Remove out_value() method.
This method isn't implemented in any port. It seemed to have originated
in cc3200 port, but actually never was implemented there either. In
general case, it's impossible to implement this method (for example, for
a perfect GPO, which has only output latch without any feedback look
into a CPU).
Diffstat (limited to 'docs/library/machine.Pin.rst')
-rw-r--r-- | docs/library/machine.Pin.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/docs/library/machine.Pin.rst b/docs/library/machine.Pin.rst index 2efd84688a..e7f3141542 100644 --- a/docs/library/machine.Pin.rst +++ b/docs/library/machine.Pin.rst @@ -146,12 +146,6 @@ Methods When setting the value this method returns ``None``. -.. method:: Pin.out_value() - - Return the value stored in the output buffer of a pin, regardless of its mode. - - Not all ports implement this method. - .. method:: Pin.__call__([x]) Pin objects are callable. The call method provides a (fast) shortcut to set |