Daniel C

Results 18 issues of Daniel C

Bad Host 502 https://cplayground.com/

Added `c=clangd,` to main.lua and everything is working as expected. I can make a PR.

``` C:/Users/brikb/AndroidStudioProjects/fudge/third_party/SimpleBLE/simpleble/src/backends/android/PeripheralBase.cpp:114:12: error: no matching constructor for initialization of 'SimpleBLE::ByteArray' (aka 'kvn::bytearray') C:/Users/brikb/AndroidStudioProjects/fudge/third_party/SimpleBLE/simpleble/../external/include\external/kvn_bytearray.h:37:5: note: candidate constructor not viable: no known conversion from 'std::vector::iterator' (aka '__wrap_iter') to 'const uint8_t *' (aka...

I assume the only solution is to run an embedded shell script or compile card_unix.c as a standalone executable in the AppImage and launch it. ``` pkexec ./card.out ```

edp driver worked fine prior to https://github.com/edk2-porting/edk2-rk3588/commit/5697f4400aca53211e108e3b65fff85fc07235c4 Once I pulled in that commit to my repo, I changed: ``` gRockchipTokenSpaceGuid.PcdLcdPixelFormat|0x00000001 gRockchipTokenSpaceGuid.PcdEdpId|0x00000001 gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution|0x780 gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution|0x438 ``` to ``` gRK3588TokenSpaceGuid.PcdDisplayConnectors|{CODE({ VOP_OUTPUT_IF_EDP1 })} ```...

### Operation 'Fantasy Fudge' Task: Rewrite the activity-based fudge UI in an immediate-mode UI library. Why: Current UI is slow, has too much state code, only works in portrait mode,...

Current AppImage is compiled with Ubuntu 20.04, and whatever Qt5 libraries it uses butchers the timer widget in the top left: ![Image](https://github.com/user-attachments/assets/37e56660-2da8-42c8-b05a-a10014fdebc3) To be clear this only happens if I...

Some if statements in RISCVAsmBackend.cpp were intended to have multiple statements, but are missing braces. This causes the `beq` instruction to be encoded as -1 (`FF FF FF FF`) https://github.com/keystone-engine/keystone/blob/fb92f32391c6cced868252167509590319eeb58b/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp#L201