aboutsummaryrefslogtreecommitdiff
path: root/usb-control/cp2102-cpdebug.py
blob: b19ba61159d6926ed837527ee48c9d6b1f3b12c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python3

"""
Controls power button and BIOS-disable signal on the
CP2102 debug board connected to an arbitray board.
"""

__copyright__ = 'Copyright (C) 2019 Theobroma Systems Design und Consulting GmbH'
__license__ = 'MIT'

import cp2102_simple

PRODUCT_STRING = "CP2102 CPDEBUG"

if __name__ == '__main__':
    cp2102_simple.main(PRODUCT_STRING)