diff options
Diffstat (limited to 'drivers/display')
| -rw-r--r-- | drivers/display/manifest.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/display/manifest.py b/drivers/display/manifest.py new file mode 100644 index 000000000..d1ddff337 --- /dev/null +++ b/drivers/display/manifest.py @@ -0,0 +1,11 @@ +# TODO: Split these into separate directories with their own manifests. +options.defaults(lcd160cr=False, ssd1306=False, test=True) + +if options.lcd160cr: + module("lcd160cr.py", opt=3) + + if options.test: + module("lcd160cr_test.py", opt=3) + +if options.ssd1306: + module("ssd1306.py", opt=3) |
