Aleksandr Krotov

Results 9 comments of Aleksandr Krotov

Actually library has engine detection that should detect Blink for any chromium based browser. Problem is that `satisfies` function doesn't check engines. Also functions `isEngine`, `isPlatform` and `isOS` are not...

Instead of doing `get(styles, text(size))` maybe it is better to do `get(styles, text).size` where `get` returns `arguments` or `dictionary` type with just stored options. It seems that it is a...

I haven't checked the code yet but will share my own thoughts. Ideally we should stabilise entire frame path from frame capture to frame display. In such a way we...

> I'm a bit skeptical of such an end-to-end solution, since it's really hard to synchronize timestamps between two separate systems. You can't simply trust raw timestamps sent from a...

I noticed that Parsec was smoother than moonlight last time I tried (with comparable latency). Do not really know what they are doing but as in commercial product they definitely...

> The thing here is that you actually don't need an absolute timestamps to be synchronised between two systems. You can use differences between remote timestamps to know how to...

Actually this crate has an internal buffer that is enough only for usb 1.1 mode which only allows small packets Here it is: https://github.com/rust-embedded-community/usbd-serial/blob/7331c49d7a6e432e1db66d350152116ca4437f3e/src/buffer.rs#L126 With usb 2.0 packet size can...

Or you can just use `imxrt_usbd::Speed::LowFull` instead of `imxrt_usbd::Speed::High`

@hacknus so the easy way to just get it working reliably is to switch to lower speed. It is done on the user side when you init usbd. I'm not...