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.
2 parents 5084033 + d09621e commit 6cde03aCopy full SHA for 6cde03a
adafruit_platformdetect/chip.py
@@ -27,6 +27,11 @@ class Chip:
27
"""Attempt detection of current chip / CPU."""
28
def __init__(self, detector):
29
self.detector = detector
30
+ try:
31
+ if os.environ['BLINKA_NOVA']:
32
+ self._binho = None
33
+ except KeyError: # no relevant environment var
34
+ pass
35
36
@property
37
def id(self): # pylint: disable=invalid-name,too-many-branches,too-many-return-statements
0 commit comments