wuwbobo2021
wuwbobo2021
I've got the same error when testing on Windows 10 LTSC 2019, which is supported by Microsoft until 2029 (longer than LTSC 2021). Version 1809, 17763.5936. Would you please describe...
Workaround in my app: in `btleplug-0.11.5\src\winrtble\ble\watcher.rs`, line 54, change `self.watcher.SetAllowExtendedAdvertisements(true)?;` to `let _ = self.watcher.SetAllowExtendedAdvertisements(true);`. Another interesting problem: when bluetooth is disabled on Windows 10, the adapter is still available...
"our Android code runs without a context" Is this crate helpful? It might work with `j4rs` as well:
I have read the first comment in . I realized that this library cannot be used directly in a Rust native application based on `android-activity` crate (e.g. `slint`, `egui`), because...
`bluest` can work with applications based on `android-activity` crate. However, the `device` portion of the Android implementation is unimplemented! The test program for device discovery is provided here. Notes: -...
I would like to finish the Android implementation for the `bluest` API. Here are a few questions: From a native activity's point of view, a temporary Java `Activity` overriding `onRequestPermissionResult`...
Inspired by (which probably discards possible data on timeout), I wrote and tested a prototype of synchronous reader for `nusb`, but I'm not sure if it is the correct implementation....
Sorry, I've reviewed my previous code and found a bad mistake: `copy_from_slice()` will panic because it was used wrongly, so I hid it as `spam` for a while. The current...
I've changed my code again to use the `futures_timer` crate, it doesn't introduce any extra dependency by default.
@argv-minus-one Sorry for bothering. And I just realized [JNIEnv::lock_obj] before receiving your reply. > These functions' behavior conforms to the Java rules about data races, namely the [Java Memory Model](https://en.wikipedia.org/wiki/Java_memory_model),...