Betcha it is something to do with wait, also You are aware that hser.* is sent true not inverted. Howz about the other end of the equation (what the car sends), and does it send more than once ? Big also, put a pullup resistor on the herserin line.
Betcha it is something to do with wait, also You are aware that hser.* is sent true not inverted. Howz about the other end of the equation (what the car sends), and does it send more than once ? Big also, put a pullup resistor on the herserin line.
Last edited by Archangel; - 14th November 2008 at 03:19.
If you do not believe in MAGIC, Consider how currency has value simply by printing it, and is then traded for real assets.
.
Gold is the money of kings, silver is the money of gentlemen, barter is the money of peasants - but debt is the money of slaves
.
There simply is no "Happy Spam" If you do it you will disappear from this forum.
9600 might be a bit fast for 4MHz. So an adjustment there could be in order.
Let work on the interrupt problem first.
The below code has a push button on PORTB.0. PORTB.0 is pulled LOW with an external 10K.
I have an LED on PORTD.2 for testing with a 470 to the zero rail.
Using SEROUT2 so a level converter (MAX232) is not needed at this time.
See if you can make this work and then we can play with the hardware serial and level converters.
Code:'##################### '16F877A DEFINE OSC 20 '#################### @ __config _HS_OSC & _WDT_OFF & _LVP_OFF & _CP_OFF &_BODEN_OFF I VAR BYTE ON INTERRUPT GOTO MACINT INTCON = %10010000 LOOP: HIGH PORTD.2 SEROUT2 PORTC.6,16468,["PUSH ME !!!",10,13] PAUSE 100 GOTO LOOP '############################################ DISABLE MACINT: IF PORTB.0 = 1 THEN FOR I = 1 TO 10 HIGH PORTD.2 PAUSE 150 LOW PORTD.2 PAUSE 150 SEROUT2 PORTC.6,16468,["MACKRACKIT",10,13] NEXT I ENDIF INTCON.1 = 0 RESUME ENABLE 'THE ABOVE WILL ALSO DEBOUNCE THE SWITCH '#############################################
Dave
Always wear safety glasses while programming.
9600 baud run perfect @4MHz with the hardware USART (0.16% error), however may suffer with SEROUT, SEROUT2, in this case DEBUG is recommended if you don't want to use the Hardware USART.
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
Bookmarks