blob: 16f93a7d4e99a7c7a03c711cadd5a6185691103d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# TODO: Split these into separate directories with their own manifests.
options.defaults(lcd160cr=False, ssd1306=False, test=False)
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)
|