-
Notifications
You must be signed in to change notification settings - Fork 236
"Detected board" incorrect #495
Comments
@kyeburchard we will try to investigate it. |
For me, it correctly identifies my SparkFun ESP8266 Thing Dev, but incorrectly identifies my ESP32 Dev Module as an Adafruit Feather HUZZAH ESP8266. I have tried reinstalling the extension and a few other things. Are there any logs or something I can find and attach? |
@kyeb Sorry for late response. Board detection depends on product ID and vendor ID of your board, so I need know your board's PID and VID. You can find them from device manager. Or if you have node installed, you can find them with a simple node script: const serialport = require('serialport-lite').SerialPortLite;
serialport.list().then(console.log); Install |
@Sneezry No worries. The response I get from running that node script is the following: |
It seems your board has the same identity with Do you want the extension to popup both |
Interesting, I wonder why they would have the same identity...? Just remembering my choice of "no" and stopping the notification for next time would be awesome (it's really annoying to be notified every time when plugging in and unplugging a bunch). |
In fact, PID and VID is not binding to board, but USB control chip. Both HUZZAH and ESP32 use the same chip. |
I see. The language that "Detected board Adafruit HUZZAH ESP8266" is somewhat misleading in that case. |
We have added a new option to ignore specific board when popup board detection in v0.2.15 |
Every time I plug my ESP32 Dev Module in with vscode open, I get a suggestion to switch to a different board - it tells me it detected an ESP8266. I have used an 8266 in the past, but the current workspace is configured for the ESP32.
The text was updated successfully, but these errors were encountered: