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 cddd4d4 commit b743d14Copy full SHA for b743d14
adafruit_platformdetect/chip.py
@@ -3,6 +3,7 @@
3
import os
4
5
AM33XX = "AM33XX"
6
+IMX8MX = "IMX8MX"
7
BCM2XXX = "BCM2XXX"
8
ESP8266 = "ESP8266"
9
SAMD21 = "SAMD21"
@@ -89,6 +90,9 @@ def _linux_id(self):
89
90
linux_id = T186
91
elif 'xavier' in compatible:
92
linux_id = T194
93
+ if compatible and 'imx8m' in compatible:
94
+ linux_id = IMX8MX
95
+
96
elif hardware in ("BCM2708", "BCM2709", "BCM2835"):
97
linux_id = BCM2XXX
98
elif "AM33XX" in hardware:
0 commit comments