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 4bd8975 commit da31d9dCopy full SHA for da31d9d
esptool.py
@@ -33,7 +33,7 @@
33
34
import serial
35
36
-__version__ = "2.3"
+__version__ = "2.3.1"
37
38
MAX_UINT32 = 0xffffffff
39
MAX_UINT24 = 0xffffff
@@ -892,7 +892,7 @@ def get_chip_description(self):
892
return "ESP8285" if is_8285 else "ESP8266EX"
893
894
def get_chip_features(self):
895
- features = "WiFi"
+ features = [ "WiFi" ]
896
if self.get_chip_description() == "ESP8285":
897
features += ["Embedded Flash"]
898
return features
0 commit comments