help question on video propeller
Marc71
Posts: 14
Hello!
I have a questions about the PAL CVBS video of the Propeller.
You can have a resolution of 512x384 pixels on TV-out, instead of the vga?
With 2 colors instead of 4?
without having to use a type converter IC MC1377
There is no driver of this type.
Thanks!
Marc71
I have a questions about the PAL CVBS video of the Propeller.
You can have a resolution of 512x384 pixels on TV-out, instead of the vga?
With 2 colors instead of 4?
without having to use a type converter IC MC1377
There is no driver of this type.
Thanks!
Marc71
Comments
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Composite NTSC sprite driver: Forum
NTSC & PAL driver templates: ObEx Forum
OnePinTVText driver: ObEx Forum
BITMAP course, no character,
Your driver and modified in that way?
Thanks!
Marc71
But yes, it can be done. Let me take opportunity to show how.
Okay, you want a simple 1bpp bitmap display. Looking at the comments in my template I see there are 2270*2=4540 PLLA per line (including horizontal blank). 70% of of that (active without overscan) is 3178. So if you want a 512 pixel wide display that means 3178/512 = 6 PLLA per pixel and a total of 3072 PLLA per line. We therefore adjust the VSCL values as so:
And then code up the pixel loop: In this case incolor is the color for the line rather than a pointer to the colorbar buffer. Initializing VCFG and pixelptr is left as an exercise for the reader.