Brandon Ros
Brandon Ros
  Why would it say Entity not found... hmm... let me add some logs
I got it, this only supports `libusb` devices, not devices with like actual drivers...? I'd have to uninstall my driver for this device and replace it with WinUSB, the `rusb::open()`...
One complex thing about this device is it has multiple interfaces. aka, you plug one device in physically and you get 1. https://en.wikipedia.org/wiki/Network_Driver_Interface_Specification (which I don't care about/am not trying...
android to windows failure: [usbip-flt.txt](https://github.com/vadimgrn/usbip-win2/files/14157985/usbip-flt.txt) [usbip-ude.txt](https://github.com/vadimgrn/usbip-win2/files/14157986/usbip-ude.txt) windows to windows success: [usbip-flt.txt](https://github.com/vadimgrn/usbip-win2/files/14157992/usbip-flt.txt) [usbip-ude.txt](https://github.com/vadimgrn/usbip-win2/files/14157993/usbip-ude.txt) Do you need the .etl files too? ftl logs comparison: 
Updated. It was the `%%` .cmd problem.
``` 08-08 23:37:55.038 16623 16623 F linker : CANNOT LINK EXECUTABLE "/system/bin/app_process32": couldn't map "/data/local/tmp/libPreload-armeabi-v7a.so" segment 1: Permission denied ``` ``` 1|gta7litewifi:/ # ls -lh /data/local/tmp/libPreload-armeabi-v7a.so -rwxrwxrwx 1 shell shell...
``` Brandon-Ross-MacBook-Pro:ui bros$ npm add libui-node npm WARN deprecated [email protected]: request has been deprecated, see https://github.com/request/request/issues/3142 > [email protected] install /Users/bros/Desktop/ui/node_modules/libui-node > libui-download && autogypi && npm run build Downloaded zip:...
Example in case anybody else lands on this: ```rust extern "C" fn block_size_to_dynamic_smem_size(_block_size: std::ffi::c_int) -> usize { 0 } // get kernel let my_kernel = device.get_func("my_module", "my_kernel").unwrap(); // get size...
The trace logs are interesting: ``` Running `target/debug/diag_test` 2023-02-03T22:43:52.461Z INFO [diag_test] calling... 2023-02-03T22:43:52.693Z TRACE [mio::poll] registering event source with poller: token=Token(2147483649), interests=READABLE 2023-02-03T22:43:52.694Z TRACE [mio::poll] registering event source with poller:...
Do you have any guess as to why ```rust rt_handle.spawn(async move { loop { log::info!("getting subscriber"); let mut subscriber = subscriber.lock().await; log::info!("got subscriber"); log::info!("calling next"); let result = subscriber.next().await; log::info!("{:?}",...