diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-06-03 14:50:54 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-06-03 14:50:54 +0300 |
commit | f245f5d7cc62ae60c73d51d9962a995ff3e579c5 (patch) | |
tree | b8343322fb6b25f4731f1fe6df5e94999f0d095c /docs/library | |
parent | e91b1cdae38d693fbd34a57341d8c72737f0ec22 (diff) | |
download | micropython-f245f5d7cc62ae60c73d51d9962a995ff3e579c5.tar.gz micropython-f245f5d7cc62ae60c73d51d9962a995ff3e579c5.zip |
docs/machine: Sort machine classes in logical order, not alphabetically.
The list starts with the simplest functionality - GPIO, proceeds to
communication interfaces (UART, SPI, I2C), the to time(r) related
things, then everything else.
Diffstat (limited to 'docs/library')
-rw-r--r-- | docs/library/machine.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/library/machine.rst b/docs/library/machine.rst index c2c6b83fd6..7ea7f565e7 100644 --- a/docs/library/machine.rst +++ b/docs/library/machine.rst @@ -145,13 +145,13 @@ Classes .. toctree:: :maxdepth: 1 - machine.I2C.rst machine.Pin.rst machine.Signal.rst - machine.RTC.rst + machine.UART.rst machine.SPI.rst + machine.I2C.rst + machine.RTC.rst machine.Timer.rst - machine.UART.rst machine.WDT.rst .. only:: port_wipy @@ -159,12 +159,12 @@ Classes .. toctree:: :maxdepth: 1 - machine.ADC.rst - machine.I2C.rst machine.Pin.rst - machine.RTC.rst - machine.SD.rst + machine.UART.rst machine.SPI.rst + machine.I2C.rst + machine.RTC.rst machine.Timer.rst - machine.UART.rst machine.WDT.rst + machine.ADC.rst + machine.SD.rst |