Yuting (Eugene)

Results 4 comments of Yuting (Eugene)

@wraithan Congratulation! 👏 🎉

Same for me, using esp32s3 build-in jtag on macOS vscode + espidf debug: step debug is very slow, 1~2 seconds vscode + cppdbg: normal speed terminal + openocd +esp-gdb: normal...

@XuBovey 原因应该在这里, P 模式后获取像素只有 RGB 格式, 没有 ALPHA 通道数据, 所以脚本补 0xFF, 但这会导致不透明像素 (0, 0, 0, 0) 和黑色(0,0,0, alpha) 无法区分. ``` for i in range(palette_size): if i < real_palette_size: c =...