Continue to Site

Welcome to our site!

Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

  • Welcome to our site! Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

serial communication code,whats wrong in this?

Status
Not open for further replies.

baftab

New Member
org 000h

mov A,pcon
setb acc.7
mov pcon,A
mov tmod,#20h
mov th1,#-3
mov scon,#50h
setb tr1

mov DPTR,#rfid

h_1: clr a
movc A,@a+dptr
jz b_z
acall send
inc dptr
sjmp h_1
b_z:lcall b_1
send:mov sbuf,A
h_2:jnb ti, h_2
clr ti
ret

org 0300h
rfid: DB "re364 acknwlge",0
b_1:
end

i am checking its output on hyperterminal, and its sending me the data continously

what am i doing wrong here??
i just want it to send me "re364 acknwlge" once
 
Please use Code tags when posting code. Simply click on the # in the menu above the text entry box before pasting your code. Makes it look like this: :)
Code:
	org	000h

	mov	A,pcon
	setb	acc.7
	mov	pcon,A
	mov	tmod,#20h
	mov	th1,#-3
	mov	scon,#50h
	setb	tr1

	mov	DPTR,#rfid

h_1:	clr	a
	movc	A,@a+dptr
	jz	b_z
	acall	send
	inc	dptr
	sjmp	h_1
b_z:	lcall	b_1
send:	mov	sbuf,A
h_2:	jnb	ti, h_2
	clr	ti
	ret

	org	0300h
rfid:	DB	"re364 acknwlge",0
b_1:
	end
 
You LCALL to b_1 but you have no code there. The processor doesn't just stop at the end statement, you need a loop there because the program counter will continue to run.
 
Status
Not open for further replies.

Latest threads

New Articles From Microcontroller Tips

Back
Top