drivers/display: Don't include tests by default.

The tests can be copied to the board if needed.

Also update the docs to reflect this change.

Signed-off-by: Damien George <damien@micropython.org>
pull/9218/head
Damien George 2022-09-06 11:52:46 +10:00
rodzic fb20dbe4d1
commit 655c29351a
3 zmienionych plików z 5 dodań i 3 usunięć

Wyświetl plik

@ -40,9 +40,9 @@ Testing the display
There is a test program which you can use to test the features of the display,
and which also serves as a basis to start creating your own code that uses the
LCD. This test program is included in recent versions of the pyboard firmware
and is also available on GitHub
LCD. This test program is available on GitHub
`here <https://github.com/micropython/micropython/blob/master/drivers/display/lcd160cr_test.py>`__.
Copy it to the board over USB mass storage, or by using `mpremote`.
To run the test from the MicroPython prompt do::

Wyświetl plik

@ -1,3 +1,5 @@
.. _mpremote:
MicroPython remote control: mpremote
====================================

Wyświetl plik

@ -1,5 +1,5 @@
# TODO: Split these into separate directories with their own manifests.
options.defaults(lcd160cr=False, ssd1306=False, test=True)
options.defaults(lcd160cr=False, ssd1306=False, test=False)
if options.lcd160cr:
module("lcd160cr.py", opt=3)