blob: d1ddff3374aba57f58c02c8ddc83ceb6bf26a6a4 (
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=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)
|