Fan Jiang

Results 140 comments of Fan Jiang

Walking by this issue, seems upstream is still unmaintained :D

Bumping this issue as I was researching `memcpy` on ESP32-S3. It turns out that aligned memcpy with EE.VLD instructions can be 6 times faster than regular memcpy, quoting https://github.com/project-x51/esp32-s3-memorycopy: ```C...

> Sure, I didn't trust the objdump blindly, I made sure I tested it on one of my ESPS3S3 chips. I ran this memcpy test: > > ```rust > #[repr(align(16))]...

啊,我用的esxi,不过解决方法一样,修改挂载点到/app/TDDOWNLOAD/TDDOWNLOAD目录下即可。

I like this idea, a lot of the operations we do with (especially interrupt-less) SPI devices is polling which can be made much less costly with this.

This would be great, since the SPI already has a FIFO of 64 bytes and it would be similar to the "interrupt-based" transactions in the official docs. For example, my...

I have a reproducer for the incorrect behavior here: https://github.com/ProfFan/esp-hal-bughunt You can change the GPIO to be whichever your board have. And change `SYSTIMER` to `TIMG0` or other timers. LED...

*It's quite hard to trigger because I only have 1 fast timer, if you change the `Timer::after`s to 1-3ms it triggers immediately

Hi @rajkundu it's because the mouse position is in the ImGui coordinate system and the x and y poses are in the VTK coordinate system, they are defined on different...

@rajkundu because they both share the x axis, viewport size is used to convert the y: ``` + (top left screen corner) - - - - - - | |...