mirror of
https://github.com/dimoniche/solarium.vlad.git
synced 2026-01-30 04:53:30 +03:00
20 lines
338 B
C
20 lines
338 B
C
#ifndef _RFID_DATA_H_
|
|
#define _RFID_DATA_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
|
|
uint32_t uid[10];
|
|
uint32_t money;
|
|
uint32_t bonus;
|
|
uint32_t type_abonement;
|
|
uint32_t number_abonement;
|
|
uint32_t best_before;
|
|
|
|
} mifaredata_t;
|
|
|
|
extern mifaredata_t* get_mifare_data();
|
|
extern void set_mifare_data(mifaredata_t* data);
|
|
|
|
#endif |