ivmarkov

Results 34 issues of ivmarkov

Offending line: https://github.com/tuupola/hagl/blob/master/src/hagl.c#L364 The easiest fix would be for `hagl_put_text` / `hagl_put_char` to take a second color parameter which would represent the "background" color in the rasterized bitmap. A completely...

Given that HAGL is essentially a software rasterizer (with an option to delegate a few things to the HAL below), I'm a bit surprised that bitmap_t is missing all the...

The library has "no dynamic allocations" but that's at the expense of large structures allocated on the stack. E.g. [here](https://github.com/tuupola/hagl/blob/master/src/hagl.c#L340) and [here](https://github.com/tuupola/hagl/blob/716f3e91e64ec4106cc96c577192937a2f94aacf/src/hagl.c#L970). (I'm not even sure how the latter one...

See #57. For `` there is a similar (but not identical) issue. "...otherProps" are put on the `` element, and not on the `` (Field) element. While I see the...

Looking at code https://github.com/kradio3/react-mdc-web/blob/master/src/Dialog/Dialog.js line 63, "... otherProps" seem to be placed on the `` element. Is this really useful? What other properties would the user want to put on...

Translation of struct field references to Presto fails with 1.0.25 (released 4 days ago). Sample: ``` public static void main(String[] args) throws Exception { Map localMetaStore = new HashMap(); Map...

There is a HAL (more of a POC actually) for the ULP RiscV coprocessor of esp32s2 and (in future) esp32s3, that lives [here](https://github.com/esp-rs/esp-idf-hal/tree/master/riscv-ulp). This is a "mini" HAL as it...

When using the native build, the linking phase fails with the following errors: ``` Error: Linker /Users/imarkov/projects/esp32/rust-esp32-std-hello/.sdk/tools/riscv32-esp-elf/1.24.0.123_64eb9ff-8.4.0/riscv32-esp-elf/bin/riscv32-esp-elf-gcc failed: exit status: 1 STDERR OUTPUT: /Users/imarkov/projects/esp32/rust-esp32-std-hello/.sdk/tools/riscv32-esp-elf/1.24.0.123_64eb9ff-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/bin/ld: /Users/imarkov/projects/esp32/rust-esp32-std-hello/.sdk/tools/riscv32-esp-elf/1.24.0.123_64eb9ff-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/8.4.0/../../../../riscv32-esp-elf/lib/rv32im/ilp32/libc.a(lib_a-svfprintf.o): in function `_svfprintf_r': /builds/idf/crosstool-NG/.build/HOST-x86_64-apple-darwin12/riscv32-esp-elf/src/newlib/newlib/libc/stdio/vfprintf.c:1217: undefined...

As per a comment from @MabezDev: > Could non blocking be implemented using uart_wait_tx_done with a low (or 0) timeout.