Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

RFID module and MCS 51 interfacing

Status
Not open for further replies.

bianchi77

Advanced Member level 4
Joined
Jun 11, 2009
Messages
1,313
Helped
21
Reputation
44
Reaction score
20
Trophy points
1,318
Location
California
Activity points
9,442
Hello everyone,

Does anybody have experience with this module interfaced with MCS51 ?
Any links or code example will be appreciated .

**broken link removed**

Thank you
 


Yes. that is what I was looking for. Everything is mentioned in it. What is the problem(s) you are facing?
My question is,
Do I have to send init code ?
or just send the command via my TX pin on MCS51 and receive ( read the response ) from RX pin ?
Do you have any experiences / experiments with this module or similar module before ?

Thanks

- - - Updated - - -

RFID command
RFID command.jpg
 

No. I don't have experience with this module or similar module. It is mentioned in the datasheet you sent about how to send the command.
See the attached image. the format should be as shown in the image.
 

Attachments

  • format.jpg
    format.jpg
    165.7 KB · Views: 62

can u tell me how many digits tag code u are using................
 

No. I don't have experience with this module or similar module. It is mentioned in the datasheet you sent about how to send the command.
See the attached image. the format should be as shown in the image.

I tried to send 01 command but can not get the response, I'm using Cypress currently here's the code :
Code:
do {

 

        UART_1_PutChar(0x61);
    

        Delay10msTimes(50);
      

        /* do a read char, if 0, send 0x01 again, else can start decode the reponse */

        /* This is assuming RX to the UART is between 1 and 0xFF */


        ucResponse = UART_1_cReadChar();
		
		Delay10msTimes(200);
		
		// Set LCD position 
        UART_1_PutChar(ucResponse);
		
	  

      }while (ucResponse == 0);

I don't understand why I can not get response from :
ucResponse = UART_1_cReadChar();
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top