nikvoid

Results 23 comments of nikvoid

In my project (using #373) I solved it like this: ```rust /// Helper for writing nested html_to! /// Basically a lazy html! that can be rendered(-to) on demand macro_rules! html_in...

Oh, just realized that this won't work simply when trying to interpolate Render value in html_to! because of &mut reference. ![image](https://user-images.githubusercontent.com/77514082/231502596-8fece8a9-8c4b-4827-8258-91e915ac49ba.png)

That seems interesting, thanks for pointing out to it. I'll try to use decomp2dbg for now instead. > @nikvoid If you are using IDA, can you check decomp2dbg and investigate...

Well, I tried. I have to say: I like your way more. I had a bunch of problems using decomp2dbg. Few of them was the same ones that I had...

diffs: ```diff diff --git a/ida_script.py b/ida_script.py index e8b4330..a8f0d0b 100644 --- a/ida_script.py +++ b/ida_script.py @@ -49,14 +49,21 @@ xmlclient.Marshaller.dispatch[type(1

I'm also working in this direction. I completely redesigned channel and host API to make it usable from multiple concurrent tasks. On RP2040 you need to reconfigure hardware for each...

OK. For now I'm going to write a hub driver and test it on few keyboards. By the way, what are good devices to test bulk and isochronous transfers on?...

Now I have USB hub working for full speed devices, but not yet for low speed. If I simply set `preamble_en` register before transfer to LS device, RxTimeout interrupt will...

Yeah, indeed. I overlooked a register for that. Now it works, except for timeouts. There may be another register to configure it, I'll research on that later.

Timeouts appear to be a problem with specfic hub. Another hub is working fine.