SX52 75MHz
Rsadeika
Posts: 3,837
Testing out my SX52 proto board, I ran into a weird situation. In stand-alone, when I run my LED on/off program, which has a·PAUSE 1000 command,·freq set at 4MHz, and 50MHz, the program runs as expected. When I run it at 75MHz (using a Parallax brand oscillator), the LED never turns off. The PAUSE command has no affect, or something else is happening. Anybody else run into a problem like this. Any ideas as to what is going on?
Thanks
Thanks
Comments
You know what you're going to get for a reply - "post your code, please"!
I've not programmed the SX very much, so my responses are mostly based on what I've read on this forum.
Ken Gracey
Parallax, Inc.
*****code
' =========================================================================
'
'·· File...... SX52test1.SXB
'·· Purpose... SX/B Programming Template
'·· Author....·
'·· E-mail....·
'·· Started...
'·· Updated...
'
'
' Program Description
'
'
' Device Settings
'
DEVICE········· SX52, OSCHS3
FREQ··········· 75_000_000
'
' IO Pins
'
led1 var rd.0
'
' Constants
'
'
' Variables
'
' =========================================================================
· PROGRAM Start
' =========================================================================
'
' Subroutine Declarations
'
LEDON sub
'
' Program Code
'
Start:
· ' initialization code here
Main:
'· TRIS_D=0
·' RD.0 = 0
·LEDON···· 'Turn the LED on/off
END
'
' Subroutine Code
'
LEDON:
·TRIS_D = 0
·led1 = 0
·pause 1000
·led1 = 1
·pause 1000
return
When I switched to a much more robust power supply, all the starting problems went away.
Is your power supply able to handle the increased power draw at 75 mHz?
David
Anybody have an explanation why my LED turned on·with no crystal/oscillator source. If, indeed this power thing is related to the problem, does anybody have a power requirement number for running a 75MHz oscillator on the proto board.
Just thought of something, is there an oscillator orientation concern, can the oscillator be placed onto the proto board in any position? I noticed on the bottom side of the oscillator there are three blue dots, on the top side there looks like a white dot, anybody know anything about those things.
Thanks
Post Edited (Rsadeika) : 12/8/2005 5:21:11 PM GMT
I think I solved the problem, It looks like it is an oscillator orientation concern. On the oscillator there is a marking, I guess it is an orientation mark. Learn something new everyday. I guess I did not fry my oscillator after all, maybe shortned the life span a bit. Just checked on battery source, and so far it looks good.
Now back to I2C.
Post Edited (Rsadeika) : 12/8/2005 8:33:38 PM GMT
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Tech Support
csavage@parallax.com
After running for a couple of minutes, I did the finger test on all the parts on the board. I noticed that the SX52 chip was getting hot, not finger blistering hot, but can't leave the finger on the chip, hot. Since I am looking for a 24/7 board operation, does anybody know if the chip will cook off at 75MHz after an extended time of use. I was·expecting some heat concerns at 100MHz, but not at 75MHz. Anybody have any heat data for the SX52 chip. In other words should I be concerned with my finger test.
Thanks
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Tech Support
csavage@parallax.com
I would look at adding a heatsink of some kind.
Bean.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
"SX-Video·Module" Now available from Parallax for only $28.95
http://www.parallax.com/detail.asp?product_id=30012
"SX-Video OSD module" Now available from Parallax for only·$49.95
http://www.parallax.com/detail.asp?product_id=30015
Product web site: www.sxvm.com
Those that would give up freedom for security will have neither.
·
-Dan
·
I have seen chips get hot enough to de-solder themselves.
Bean.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
"SX-Video·Module" Now available from Parallax for only $28.95
http://www.parallax.com/detail.asp?product_id=30012
"SX-Video OSD module" Now available from Parallax for only·$49.95
http://www.parallax.com/detail.asp?product_id=30015
Product web site: www.sxvm.com
Those that would give up freedom for security will have neither.
·
At my work we routinely test our products from -55°C to 125°C and I though that was extreme.
And not just functioning, they must be meet spec over that temperature range.
One day I'm gonna test my video modules to just see what range they will work over.
Bean.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
"SX-Video·Module" Now available from Parallax for only $28.95
http://www.parallax.com/detail.asp?product_id=30012
"SX-Video OSD module" Now available from Parallax for only·$49.95
http://www.parallax.com/detail.asp?product_id=30015
Product web site: www.sxvm.com
Those that would give up freedom for security will have neither.
·