David Lechner
David Lechner
Here is a more generic workaround to replace all `%`-delimited identifiers (based on https://github.com/facebook/create-react-app/issues/7953#issuecomment-635146861): ```javascript new CopyPlugin({ patterns: [ { from: 'public/manifest.json', transform(content, path) { return content .toString() .replace( /%\w+%/g,...
Robot Inventor and SPIKE Prime and SPIKE Essential all have different USB product IDs, so I would expect that we would have to configure the WinUSB driver for each type...
Interesting, I wonder if Windows is looking at the serial number as well when we manually configure a driver.
For for that, I think https://github.com/pbatard/libwdi/wiki/Zadig can help. It will basically create a signed driver for you that just uses the VID/PID match.
I wonder if we could use Zadig to create a `.inf` file and then just share that file rather than everyone having to install Zadig?
That is a flaky test that fails randomly, so nothing to worry about.
> perhaps it's an issue with things timing out? Did you try extending the default timeout in Bleak by passing `timeout=30` or so to `BleakClient()`? The default is 10 seconds....
> * difference in the actual BLE protocol in 5? Looks like it could be. In the working example, it is receiving "regular" advertisements but in the not working case,...
`gattool` doesn't use the D-Bus interface and requires admin privileges to have much lower-level control over the Bluetooth adapter. Can you scan and see/connect to the device using `bluetoothctl`?
Another difference could be if it is a dual mode device and it is being detected that way. Or the tool just skips scanning and tries to connect directly.