Jurgis

Results 48 comments of Jurgis

I've worked on implemeting wasm support for amethyst engine and it is quite simple, because you can create a rayon-like wrapper for web workers (https://github.com/amethyst/web_worker). HOWEVER, there is on big...

I've experimented with alternative system definitions and I think I came up with a pretty good solution, but it obviously still needs refining. I shared code on https://github.com/chemicstry/legion_test but keep...

I guess it would be possible, but hard to tell. I'm not that experienced with macros yet. Although it still has the same problem of filters needing to be defined...

@kabergstrom I highly agree with you. I've been trying various alternatives to struct and nothing felt good enough. The main limitation with struct systems is query filtering. Currently legion queries...

I'm interested in this implementation because it would potentially allow having systems as structs (same as in specs). This would greatly simplify system syntax for amethyst. Although, I don't see...

I'm not sure if still relevant, but you could check my PR for F4 async flash: https://github.com/embassy-rs/embassy/pull/870 I remember having similar behavior as yours, when I had separate `enable_irq()` and...

So the main reason is that I want to construct my own `embassy_stm32::can::Can` driver, which also takes IRQs, extra buffers, etc. Inside it I use the `bxcan` crate to access...

It's an async CAN driver, however, I don't think I can upstream it into `embassy-stm32`, because: - CAN uses four interrupts (RX0, RX1, TX, SCE) so `PeripheralMutex` does not work...

This is really interesting! I was thinking about something like this for quite some time, but didn't know about `rtos-trace`. Regarding task names, I think this could be implemented in...