CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

VGA Controller

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
IceMetal



Joined: 20 Nov 2008
Posts: 79
Location: white Plains, NY

View user's profile Send private message Yahoo Messenger

VGA Controller
PostPosted: Wed Nov 10, 2010 9:01 pm     Reply with quote

I know this forum is more for software but I have a hardware question maybe you know, I have a PIC24 that output 8 and 16bit data to a LCD screen, I'm looking for a VGA controller chip, so I can convert that 8 bit or 16 bit data into VGA instead of using a LCD screen have anyone came across to a chip like that?
arunb



Joined: 08 Sep 2003
Posts: 492
Location: India

View user's profile Send private message Send e-mail

RE:
PostPosted: Wed Nov 10, 2010 10:51 pm     Reply with quote

I did a datalogger project that needed to output some data to a television. I used an interface card for this.

The card could be accessed via RS 232, there were several commands to setup the screen, print and format data etc. The card could be connected to the TV via a RCA plug.

I am not sure if this what you are looking.
Douglas Kennedy



Joined: 07 Sep 2003
Posts: 755
Location: Florida

View user's profile Send private message AIM Address

PostPosted: Thu Nov 11, 2010 4:28 am     Reply with quote

There are PCB modules Ex I've used BOBII several years ago to put a limited number of lines on a TV screen. You are looking for VGA basically a 5 pin interface RGB HS VS. It needs a character generator a video frame buffer cursor control etc. I've used a xilinx FPGA to do it but it's a whole new learning curve to program VHDL verilog etc. so you may not want to go that way. I don't know of a commercial chip that would do it for you.
If it is just more lines and a 4" screen is acceptable then
a number of surplus handheld GPS devices Ex V7 have a Windows CE OS ..the rs232 output from the ARM CPU can be brought out . If you have a way to program Windows CE you can write a terminal emulator. I've had success with Lazarus and cross compiling to the V7 device.
I've also used Palm III as a terminal emulator.
bkamen



Joined: 07 Jan 2004
Posts: 1611
Location: Central Illinois, USA

View user's profile Send private message

PostPosted: Thu Nov 11, 2010 11:44 am     Reply with quote

I've also wanted to make something with the PIC24FJ256DA210 and was looking into some uses for one client...

The replies bring up some good questions:

What are you trying to display? (Text or Graphics too?)
What REZ do you want to display?
Do you really want Analog or are you also shooting for Composite/S-Video?
Last, you are not wanting Video Overlay capabilities, do you?

If you just want to go from Digital to Analog, you just need a video DAC and the right drivers for all the outputs (H/Vsync and RGB) at 75ohms.

(one example: http://www.st.com/stonline/products/literature/ta/10623.pdf )
-Ben

Edit: AD8073 looks nice (http://www.analog.com/static/imported-files/data_sheets/AD8072_8073.pdf)

Here's a chip from NXP that might do it too:
http://www.nxp.com/documents/data_sheet/SAF7167AHW.pdf - DIG DEEP though. Make sure for sure. (looks like the RGB 5:6:5 mode would be what you want) NEATO! I'm saving this datasheet.
_________________
Dazed and confused? I don't think so. Just "plain lost" will do. :D
IceMetal



Joined: 20 Nov 2008
Posts: 79
Location: white Plains, NY

View user's profile Send private message Yahoo Messenger

PostPosted: Thu Nov 11, 2010 2:36 pm     Reply with quote

yeah I explain wrong, what I'm looking for is to build something like this
http://www.cutedigi.com/product_info.php?products_id=4271&osCsid=0c12f6a25bb0da50f73af83e9ec369d4

so I can have the option to use the LCD or just plug into the VGA monitor.
I know is a technology that been around for over 20 years every laptop has it, but I haven't found anything maybe I'm using the wrong keywords.


Last edited by IceMetal on Thu Nov 11, 2010 2:40 pm; edited 1 time in total
IceMetal



Joined: 20 Nov 2008
Posts: 79
Location: white Plains, NY

View user's profile Send private message Yahoo Messenger

PostPosted: Thu Nov 11, 2010 2:39 pm     Reply with quote

bkamen, does SAF7167AHW would do what I need, I was looking at the datasheet seems a bit confusing.
temtronic



Joined: 01 Jul 2010
Posts: 9134
Location: Greensville,Ontario

View user's profile Send private message

PostPosted: Thu Nov 11, 2010 2:52 pm     Reply with quote

A quick look at www.sparkfun.com came up with a PICASO video controller chip...for about $60.
It looks like what you could use....and at that price is well worth it.
IceMetal



Joined: 20 Nov 2008
Posts: 79
Location: white Plains, NY

View user's profile Send private message Yahoo Messenger

PostPosted: Thu Nov 11, 2010 3:10 pm     Reply with quote

temtronic wrote:
A quick look at www.sparkfun.com came up with a PICASO video controller chip...for about $60.
It looks like what you could use....and at that price is well worth it.


I seen that one, but it requires to re write the libraries to create everything again for the VGA I want to use the same data bus that is send to the LCD,
it goes from the pic24 to the solomon chip SSD1926 and that is decode to the LCD
I think the data that goes to the SSD1926 is the bus data that it was use on old video cards
bkamen



Joined: 07 Jan 2004
Posts: 1611
Location: Central Illinois, USA

View user's profile Send private message

PostPosted: Thu Nov 11, 2010 3:35 pm     Reply with quote

IceMetal wrote:
bkamen, does SAF7167AHW would do what I need, I was looking at the datasheet seems a bit confusing.


If you look close:

The SAF7167 supports RGB 5:6:5 mode (which it notes bypasses straight to the output drivers -- and you need those anyway) and the PIC24FJ256DA210 supports RGB 5:6:5 mode.

So it sounds like "yes".

But I haven't actually built one, so you need to carefully read both and maybe give a call to your local Microchip FAE with part numbers ready for him and ask.

-Ben
_________________
Dazed and confused? I don't think so. Just "plain lost" will do. :D


Last edited by bkamen on Fri Nov 12, 2010 12:03 am; edited 1 time in total
arunb



Joined: 08 Sep 2003
Posts: 492
Location: India

View user's profile Send private message Send e-mail

RE:
PostPosted: Thu Nov 11, 2010 9:58 pm     Reply with quote

Quote:
There are PCB modules Ex I've used BOBII several years ago to put a limited...


Yes now I remember that's the same module I used, I had lots of fun using it.
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group