Results 48 comments of Miroslav Nemecek

Sorry, that was from my other project. Change - delete the condition and just use this: gpio_put(VGA_GPIO_VSYNC, (linetype == LINE_VSYNC) ? 0 : 1);

Pin 9 is specified as the power supply for the ROM in the monitor. Sometimes I use it, sometimes I don't, but I haven't noticed a difference. Sometimes I even...

Check the settings in vga_config.h to see if it matches your hardware - VGA_GPIO_FIRST is the first pin with colors, followed by 8 pins of colors and 1 pin with...

PicoVGA cannot rotate the display. It would be difficult to implement - mainly because DMA cannot transfer data with increment other than 1. It would have to be solved by...

Maybe it could be better not to modify source codes, use mono graphics mode FORM_MONO and use only 1 output GPIO bit.

It is possible to select only the first pin, VGA_GPIO_FIRST, defining B0 (in the vga_config.h file). The other GPIO must follow continuously - this is by the principle of the...

I'm sorry, but I'm not entirely sure if I made any changes to the source files as well. I think I just copied the C and S to _sdk, the...

I apologize for not updating a newer version of the SDK - I am creating my own version of the SDK library, with more functionality and more transparency for the...

I am still working on a Pico microcomputer, which allows running programs from an SD card (similar to classic 8-bit computers). I'm creating a new custom SDK library for Pico,...

It may be difficult to combine programs because they use different settings during compilation time. At a minimum, you will need to share a frame video buffer.