Katie Casamento
Katie Casamento
How long is it expected to take for the build report to show up? I uploaded a [candidate](https://hackage.haskell.org/package/polysemy-keyed-state-0.1/candidate) a few days ago that seems to still have no [reports](https://hackage.haskell.org/package/polysemy-keyed-state-0.1/candidate/reports/) or...
Alright, I have tested everything thoroughly on my local machine so I guess I'll publish it and hope for the best. As a first-time contributor, it's a little intimidating to...
Hm, waiting for `status` to read `1` also doesn't reliably resolve the race condition for me. The [core docs](https://github.com/agg23/openfpga-litex/blob/master/docs/control.md#common) say that `status` reads `1` when it's currently transferring a file...
Thanks for that clarification! I think I might have found my answer in your code, but just in case, here's a minimal test program that's giving me unexpected results, with...
Yeah, I'm still not quite sure why that example code doesn't seem to read anything - slot 0 has the program binary in it, so even if `slot_id` fails to...
Well, I'm still running into this problem in the bigger project. I went ahead and uploaded the [code in progress](https://github.com/kcsmnt0/pocket-knife) in case you want to look at it - sorry...
Ah, thanks for catching that! I'll try it out when I get home tonight but that'll presumably fix my issue. I was deliberately ignoring the possibility of running off the...
Nope... That was clearly *a* bug, but apparently it's not *the* bug. I'm still seeing an unmodified buffer: ``` read: buffer address 0x43fffeec, length 20, data address 0 read requested...
Ahh, that totally makes sense - it's not a race condition that's been giving me unpredictable results, it's an overeager compiler optimization either firing or not firing depending on the...
Yep, reading into an unsafe static buffer seems to work reliably for me. This also works for reading into a local `&mut [u8]`: ```rust File.request_read(/* args */); File.block_op_complete(); for addr...