Jack Greenberg

Results 8 comments of Jack Greenberg

Will this feature still be worked on / merged?

Did you figure anything out here? I'm struggling with this problem as well. In this line ```c if (avr->io[a].r.param || avr->io[a].r.c) { ``` in `simavr/sim/sim_io.c` it seems like whatever `a`...

@edgar-bonet thanks for the suggestion! I did a bit more digging and determined the issue. The ATmega16m1 doesn't have a UART peripheral. The UART peripheral is combined with LIN, so...

Ah, I now see that it is supported to have UART be part of the LIN peripheral. It seems like the issue is the `p->fe.reg` in the uart_unit in line...

Ah whoops, I mis-wrote this (I actually found this a few months ago but forgot to submit it). In `avr_register_io_read`, we see the following lines: ```c avr_io_addr_t a = AVR_DATA_TO_IO(addr);...

Unsure if this is the same issue as for other folks, but I ran into something similar and realized that if I was viewing the contents of a playlist in...

I'd maybe propose keeping the common `pub(super) blocking_read` function and replacing the Flash::blocking_read: ```rust impl { // ... /// Blocking read. /// /// NOTE: `offset` is an offset from the...