diff options
| author | Sadeep Madurange <sadeep@asciimx.com> | 2025-05-07 18:54:17 +0800 |
|---|---|---|
| committer | Sadeep Madurange <sadeep@asciimx.com> | 2025-05-07 18:54:17 +0800 |
| commit | 46f3486d266589aced490116512af1461dcc0815 (patch) | |
| tree | 6ce6cc6a1e502dace83ed70b0b2cd99cee75b2d0 | |
| parent | bd59220717d6a7221d5b11757bc27dc48f17258b (diff) | |
| download | avr-fpm-drivers-46f3486d266589aced490116512af1461dcc0815.tar.gz | |
Renamed files and updated the README.
| -rw-r--r-- | README.txt | 14 | ||||
| -rw-r--r-- | fpm10a.c (renamed from fpm.c) | 2 | ||||
| -rw-r--r-- | fpm10a.h (renamed from fpm.h) | 0 |
3 files changed, 10 insertions, 6 deletions
@@ -1,10 +1,14 @@ -FPM10A FINGERPRINT MODULE +FPM DRIVERS -This is a UART-based driver for FPM10A fingerprint module for AVR -microcontrollers. I've tested with ATmega328P. +This project contains drivers for the following fingerprint sensor modules +FPM10A for AVR microcontrollers: -Since ATmega328P has only one hardware UART, I'm using lynxzp's software UART -implementation [1] for debugging purposes. Thank you, lynxzp! + - R503 + - FPM10A + +I've only tested these with ATmega328P MCU. Since ATmega328P has only one UART, +I'm using lynxzp's software UART implementation [1] for debugging. Thank you, +lynxzp! BUILDING AND UPLOADING @@ -2,7 +2,7 @@ #include <util/delay.h> #include <util/setbaud.h> -#include "fpm.h" +#include "fpm10a.h" #define MAXPDLEN 64 #define RST_DELAY_MS 500 |
