summaryrefslogtreecommitdiffstats
path: root/fpm.h
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2025-05-07 18:54:17 +0800
committerSadeep Madurange <sadeep@asciimx.com>2025-05-07 18:54:17 +0800
commit46f3486d266589aced490116512af1461dcc0815 (patch)
tree6ce6cc6a1e502dace83ed70b0b2cd99cee75b2d0 /fpm.h
parentbd59220717d6a7221d5b11757bc27dc48f17258b (diff)
downloadavr-fpm-drivers-46f3486d266589aced490116512af1461dcc0815.tar.gz
Renamed files and updated the README.
Diffstat (limited to 'fpm.h')
-rw-r--r--fpm.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/fpm.h b/fpm.h
deleted file mode 100644
index 0b9d303..0000000
--- a/fpm.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef FPM_H
-#define FPM_H
-
-#include <stdint.h>
-
-struct fpm_cfg {
- uint16_t status;
- uint16_t sysid;
- uint16_t cap;
- uint16_t sec_level;
- uint8_t addr[4];
- uint16_t pkt_size;
- uint16_t baud;
-};
-
-uint8_t fpm_init(void);
-
-uint8_t fpm_get_cfg(struct fpm_cfg *cfg);
-
-uint8_t fpm_set_pwd(uint32_t pwd);
-
-uint16_t fpm_get_count(void);
-
-uint8_t fpm_enroll(void);
-
-uint8_t fpm_match(void);
-
-uint8_t fpm_clear_db(void);
-
-#endif /* FPM_H */