It there an easy way to do 8 bit VGA color(256 colors)...looking at the propeller manual it appears that only 6 bits are possible with the waitvid instruction
Been done already, you just have to know when to switch over. Don't have the link right now but if you dig though propellerpowered.com you'll find details for h/w and s/w.
The Propellerpowered forums are still active. The shop was moved to tindie and you are correct, it appears that Jeff's tindie presence is now gone also. How sad.
I got an email from tindie yesterday and the email stated that they here updating and restructuring their site, I found the propellerpowered store here:
@roadster,
I received the same message as well. It will probably affect how OBC (or anyone else who has a store) in the future since "supplies" are being phased out on Tindie as items. I think that is to encourage more projects/kits being on the site rather than just IC's/connectors.
On March 24th, we will retire supply products.
At our core, we are growing a community of creators. We think this is the right move to ensure that we foster that environment and it isnt squashed by bulk, resold products. This will hurt sales for the near term, but we think it is the right move for the community as a whole.
A few questions have come up since this announcement yesterday:
What is a supply product?
Supply products are anything you didnt design yourself, and are being resold.
Can I still include supply parts as a product option on a product I did create?
Yes you can. That is fine as long as you designed the main product.
I just bought a ton of parts. Can they stay in my store past the 24th?
Yes, we will leave products up on your own personal store. Just know they wont be shown in browsing and search.
Thank you for the links to the examples...now the hard part...understanding how the drivers works...
The propeller manual states that during the WAITVID instruction.."For VGA, each color values upper 6-bits is the 2-bit red, 2-bit green, and 2-bit blue color components describing the desired color; the lower 2-bits are dont care bits." I am guessing that you can still have data on the lower 2-bits and the WAITVID will output all eight bits..is that true? Normally the lower 2bits would be the Hsync and Vsync...but during pixel display those 2 lower bits can be used (making 8bits)...and some how you can move the Hsync and Vsync pins to a different grouping of pins. Is that the switching that Kuroneko is talking about?
@roadster,
I received the same message as well. It will probably affect how OBC (or anyone else who has a store) in the future since "supplies" are being phased out on Tindie as items. I think that is to encourage more projects/kits being on the site rather than just IC's/connectors.
Interesting move, but perhaps a little blunt-instrument like.
eg someone selling development tools/programmers, might also want to include ICs in the offering.
One is not much use, without the other...
Thank you for the links to the examples...now the hard part...understanding how the drivers works...
During the visible lines the sync signals are constant so can be driven by setting outa to the relevant values. That leaves all 8 bit from the video shifter for colour. When you transition into e.g. HSYNC colours are 0 so you do the reverse, drive colours through outa and let the video h/w control the sync lines (different pin group) to get the correct timing. Easiest driver configuration is with positive sync polarities (idle state low). Anything else needs some extra care to avoid unclean signal transitions.
Comments
all links to propellerpowered are history. 404 wherever you go. Looks like Jeff shut down business.
Enjoy!
Mike
For easy access, h/w description and latest driver source used with PropellerBASIC.
http://propellerpowered.com/forum/index.php?topic=274.msg1446#msg1446
well it brings you to a page where you can enter the shop in tindle, and the shop in tindle is gone.
http://propellepowered.us/ his last new site is gone also.
the forum link still works.
Sad.
Mike
https://www.tindie.com/stores/Propellerpowered/
I received the same message as well. It will probably affect how OBC (or anyone else who has a store) in the future since "supplies" are being phased out on Tindie as items. I think that is to encourage more projects/kits being on the site rather than just IC's/connectors.
@msrobots,
The forums are still available here:
http://www.propellerpowered.com/forum/index.php
OBC
The propeller manual states that during the WAITVID instruction.."For VGA, each color values upper 6-bits is the 2-bit red, 2-bit green, and 2-bit blue color components describing the desired color; the lower 2-bits are dont care bits." I am guessing that you can still have data on the lower 2-bits and the WAITVID will output all eight bits..is that true? Normally the lower 2bits would be the Hsync and Vsync...but during pixel display those 2 lower bits can be used (making 8bits)...and some how you can move the Hsync and Vsync pins to a different grouping of pins. Is that the switching that Kuroneko is talking about?
Interesting move, but perhaps a little blunt-instrument like.
eg someone selling development tools/programmers, might also want to include ICs in the offering.
One is not much use, without the other...
Got it...thank you...that is a big help