aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Muellner <christoph.muellner@theobroma-systems.com>2020-01-20 20:10:30 +0100
committerChristoph Muellner <christoph.muellner@theobroma-systems.com>2020-01-20 20:10:30 +0100
commit76ba9d90570ccf8348897ddd66dba99331ecab81 (patch)
tree1963a3383b5a640a13ad7a134257958551091f84
parent0a3eaf400de88f8f7cd12c0a7a140d9657f3e7fd (diff)
cp2102-cpdebug.py: Adding new controller type.
Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
-rwxr-xr-xusb-control/cp2102-cpdebug.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/usb-control/cp2102-cpdebug.py b/usb-control/cp2102-cpdebug.py
new file mode 100755
index 0000000..802a6e2
--- /dev/null
+++ b/usb-control/cp2102-cpdebug.py
@@ -0,0 +1,17 @@
+#!/usr/bin/env python
+
+"""
+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)
+