Sean Cross

Results 367 comments of Sean Cross

I couldn't get it to work at all today either - the "set" button on the picker would just set the current time, and the fields themselves weren't editable.

I did check, and hammertime.cyou works now with the "custom components", which I see is now implemented. Still, I fixed the native component on Firefox by applying this patch: ```patch...

Hi! Thank you for your comment. My experiences with "non-deterministic flash" consisted of the MCU spending a variable number of cycles in the main loop -- anywhere from 24 to...

I believe these are EP0 requests that are not handled in Fernly. Support will need to be added.

That could very well be the case. It's possible for the vendor to lock out code execution, which might be what's happening here.

It's been a while, but I thought `7000c000` was the address of PSRAM or something along those lines. Perhaps your device hasn't initialized it yet. I hope the device hasn't...

It's ultimately going through TinyUSB, yes. If you want USB-CDC without TinyUSB, you have two options: 1. Implement it yourself using eptri. This hardware block is documented at https://rm.fomu.im/usb.html and...

I was able to get the simulator to work by patching `riscv/platform.h`: ```patch diff --git a/riscv/platform.h b/riscv/platform.h index 2bafa68d..3bc7ff18 100644 --- a/riscv/platform.h +++ b/riscv/platform.h @@ -2,7 +2,7 @@ #ifndef _RISCV_PLATFORM_H...

The issue, I think, is that I'm not sure how to use the ISA sim. I was trying to validate the behaviour of an emulator, so I wrote a small...