Leonardo Gabrielli
Leonardo Gabrielli
I compiled hairless from the git master but my USB serial port is not listed. Looking at the git history this has probably nothing to do with hairless itself (which...
Hi, the solution I currently implemented follows: - I implemented a QTimer to poll getPorts() at regular intervals - if the current port is missing I refresh all lists (serial...
An additional note: I have compiled the old version of Microwin and linked my application to it. The bug doesn't appear. I believe it's a regression in microwin.
Thank you for the prompt reply (and the amazing work with microwin). These are the bites of code you need: ``` void LcdPopup(...) { ... // backup of the raster...
Thank you. The old version of the library works for me, but let's see if I can help. BTW I should point out that I needed to patch the source...
I have tried to fix the printing of the area, still something wrong, but at least I can read some characters on screen. As you can see the backup copy...
Regarding the function GrNewPixmapEx, I can't see where is the format applied. It is defined like this in nano-X.h: `#define GrNewPixmap(width,height,pixels) GrNewPixmapEx(width,height,0,pixels)` The format argument is always zero
Here is the diff ``` --- microwin/src/drivers/scr_fb.c 2021-09-13 15:31:39.475000999 +0200 +++ microwindows/src/drivers/scr_fb.c 2021-10-27 10:57:30.165026425 +0200 @@ -161,7 +161,7 @@ psd->pitch = fb_fix.line_length; psd->size = psd->yres * psd->pitch; - psd->flags =...
Well, actually I made that patch because the program would end on "Unsupported color". With the patch, when psd->bpp == 1 (my case) I avoid failing and set MWPF_PALETTE instead,...
Dear Jens, thank you for the bug report. I found a fix. Are you compiling the plugin from sources or using the build version as a regular user? In the...