We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0de104c commit d3cc2a2Copy full SHA for d3cc2a2
bin/detect.py
@@ -24,10 +24,12 @@
24
print("Is this an embedded Linux system?", detector.board.any_embedded_linux)
25
print("Is this a generic Linux PC?", detector.board.GENERIC_LINUX_PC)
26
print("Is this a UDOO Bolt?", detector.board.UDOO_BOLT)
27
-print("Is this an OS environment variable special case?", detector.board.FTDI_FT232H
+print(
28
+ "Is this an OS environment variable special case?",
29
+ detector.board.FTDI_FT232H
30
| detector.board.MICROCHIP_MCP2221
31
| detector.board.BINHO_NOVA
- | detector.board.GREATFET_ONE
32
+ | detector.board.GREATFET_ONE,
33
)
34
35
if detector.board.any_raspberry_pi:
0 commit comments