No, it's just that MadMapper filters virtual ports based on vendorID / productID:
if (vendorID==0x1d50 && productID==0x60aa)
dt=LSDT_BlinkyTile;
else if (vendorID==0x1d50 && productID==0x605e)
dt=LSDT_BlinkyTape;
else if (vendorID==0x2341 || vendorID==0x093a || vendorID==0x0403)
dt=LSDT_Arduino;
else if (vendorID==0x16c0)
dt=LSDT_Teensy;
else if (vendorID==0x2886)
dt=LSDT_Seeeduino;
else
continue; // Not an arduino compatible device
I can add the SparkFun ESP32 before MM 5.1 beta build. Could you send me the VID/PID of your product ? Just to be sure added the right ones. Are you on macOS or Windows ?
This is how to get it: https://superuser.com/questions/1106247 ... 48#1106248