15 lines
275 B
C
15 lines
275 B
C
#ifndef ID_DRIVER_H__
|
|
#define ID_DRIVER_H__
|
|
|
|
#include "common_types.h"
|
|
#include <stdint.h>
|
|
|
|
#define ID_PIN_COUNT 4
|
|
#define ID_BASE_ADDR 0x40
|
|
|
|
ret_code_t id_driver_init(void);
|
|
uint8_t id_get_value(void);
|
|
uint8_t id_get_slave_address(void);
|
|
|
|
#endif
|