blob: c4f6010d13b78fc9149358b48f48316c638b4bcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#ifndef FPM_R503_H
#define FPM_R503_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;
};
typedef enum {
RED = 0x01,
BLUE = 0x02,
PURPLE = 0x03
} COLOR;
uint8_t fpm_init(void);
uint8_t fpm_get_cfg(struct fpm_cfg *cfg);
uint8_t fpm_set_pwd(uint32_t pwd);
void fpm_led_on(COLOR color);
void fpm_led_off(void);
uint16_t fpm_get_count(void);
uint8_t fpm_enroll(void);
uint8_t fpm_match(void);
uint8_t fpm_clear_db(void);
#endif /* FPM_R50_H */
|