shangdawei / AVRFID

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

License:GNU General Public License v3.0


Languages

Language:C 72.1%Language:Makefile 27.9%