Sean Cross

Results 286 comments of Sean Cross

I have an initial build up at https://github.com/xobs/t-rec-rs/tree/win-support It mostly steals from the `winrt-rs` example that is referred to in the previous iteration of the win module. However, it performs...

I'll also modify it to use the `magick` command directly, instead of using the alias. That should fix the issue I was seeing!

I would very much like "none" to be an option. In the past it's been a challenge to find the right combination of configuration flags to tell litex to have...

I'm looking to add gdb support to my kernel by hooking an interrupt. Currently, the interrupt handler for the UART supports several single-key sequences to do things like dump the...

This appears to be due to https://github.com/abonander/mime_guess/issues/78 which is fixed in https://github.com/abonander/mime_guess/pull/79 You might try adding something like this to your `Cargo.toml` file while waiting for the PR to get...

We're using `rkyv` for IPC in our operating system. The microkernel is based around shoveling memory pages back and forth. A memory page is allocated on a multiple of 4...

I added a chapter to the `Xous Book` on how to add C# peripherals: https://betrusted.io/xous-book/ch04-04-writing-cs-peripherals.html. It needs more work to add examples on things like peripherals with memory ranges, but...

I don't think it's possible, unless it pulls files from somewhere outside of the source directory. The steps I took were: ``` # Add Visual Studio 2022 to the path...

I managed to build `busybox` with `libmusl` and a statically-linked binary. This image is the only file on the disk, and was installed with `make install`. I then created an...

Update: I can add a breakpoint to both the untranslated address and the translated address, and that causes it to work.