Skip to content

shangdawei/AVRFID

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Soon to be under the BSD licence


This is a program that was designed to read data from an RFID card at a 125kHz freequency. It was originialy used to replace the PIC on a paralax RFID reader so that it would be able to read HID rfid cards.


I. Building and Burning the program








I. Building and Burning the program
  There are commands in the source code that will help you compile and burn the
  program to the ATmega328
  
  
  To compile the program to a hex file
  `make hex`
  
  To burn the Hex file and the fusses on unix [Tested on ubuntu]
  `sudo avrdude -p m328p -c usbtiny -U flash:w:myproject.hex -U lfuse:w:0xE2:m -U hfuse:w:0xD9:m -U efuse:w:0x07:m`
  
  To Burn Just the program on unix [Tested on ubuntu]
  `sudo avrdude -p m328p -c usbtiny -U flash:w:myproject.hex`
  
  On windows you can usually burn the program the same way

About

A mod of the paralax RFID reader to be able to read 125kHz FSK signals using and AVR

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 72.1%
  • Makefile 27.9%