![]() |
![]() |
![]() |
|
|
|||||||
| Micro Controllers Discuss all aspects of micro controllers - building them, coding them, etc. All controllers are welcome - PIC, BASIC, Z8 Encore!, etc. |
|
|
Thread Tools | Display Modes |
|
|
(permalink) |
|
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 |
|
|
|
|
|
|
(permalink) |
|
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
__________________
========================= Futz's Microcontrollers & Robotics ========================= |
|
|
|
|
|
|
(permalink) |
|
Which micro this is written for? It looks like 8051 but I'm not sure.
|
|
|
|
|
|
|
(permalink) |
|
yeh at89c51
|
|
|
|
|
|
|
(permalink) |
|
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.
|
|
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
|
|
||||
| Thread | Thread Starter | Forum | Replies | Latest |
| serial communication in Atmel 89c51 | Peter Nabil | Micro Controllers | 9 | 4th August 2008 12:17 PM |
| Need help badly on Inchworm and MPLAB | thushy | Micro Controllers | 14 | 11th March 2007 06:05 PM |
| serial communication | jaikanth | General Electronics Chat | 1 | 12th December 2004 03:42 PM |
| Serial Communication with mobile phone | remi | Micro Controllers | 0 | 31st March 2004 04:21 PM |
| Serial communication problem | tbrown | Micro Controllers | 12 | 13th February 2004 10:32 AM |