proxmark3/include/em4x50.h

65 lines
2 KiB
C
Raw Normal View History

2020-06-15 20:30:50 +08:00
//-----------------------------------------------------------------------------
// Copyright (C) 2020 tharexde
//
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
// at your option, any later version. See the LICENSE.txt file for the text of
// the license.
//-----------------------------------------------------------------------------
// Low frequency EM4x50 structs
//-----------------------------------------------------------------------------
#ifndef EM4X50_H__
#define EM4X50_H__
2020-06-26 20:21:54 +08:00
#define EM4X50_NO_WORDS 34
// special words
#define EM4X50_DEVICE_PASSWORD 0
#define EM4X50_PROTECTION 1
#define EM4X50_CONTROL 2
#define EM4X50_DEVICE_SERIAL 32
#define EM4X50_DEVICE_ID 33
// control word (word = 4 bytes)
#define FIRST_WORD_READ 0 // first byte
#define LAST_WORD_READ 1 // second byte
#define CONFIG_BLOCK 2 // third byte
#define PASSWORD_CHECK 0x80 // first bit in third byte
#define READ_AFTER_WRITE 0x40 // second bit in third byte
// protection word
#define FIRST_WORD_READ_PROTECTED 0 // first byte
#define LAST_WORD_READ_PROTECTED 1 // second byte
#define FIRST_WORD_WRITE_INHIBITED 2 // third byte
#define LAST_WORD_WRITE_INHIBITED 3 // fourth byte
// misc
#define TIMEOUT 2000
#define DUMP_FILESIZE 136
2020-12-30 00:40:18 +08:00
#define EM4X50_MAX_NO_SAMPLES 1000
2021-01-04 05:50:27 +08:00
#define EM4X50_MAX_TIME_SAMPLES 1000
#define BYTES2UINT32(x) ((x[0] << 24) | (x[1] << 16) | (x[2] << 8) | (x[3]))
2020-06-26 20:21:54 +08:00
2020-06-15 20:30:50 +08:00
typedef struct {
2020-06-26 20:21:54 +08:00
bool addr_given;
2020-06-15 20:30:50 +08:00
bool pwd_given;
2020-10-22 06:42:18 +08:00
uint32_t password1;
uint32_t password2;
uint32_t word;
uint32_t addresses;
} PACKED em4x50_data_t;
2020-06-15 20:30:50 +08:00
2020-12-28 05:22:44 +08:00
typedef struct {
2020-12-30 00:40:18 +08:00
bool check_field;
2021-01-05 08:11:46 +08:00
bool reset;
2020-12-30 00:40:18 +08:00
int field;
int cycles;
2020-12-28 05:22:44 +08:00
} PACKED em4x50_test_t;
2020-06-15 20:30:50 +08:00
typedef struct {
uint8_t byte[4];
} PACKED em4x50_word_t;
2020-06-15 20:30:50 +08:00
#endif /* EM4X50_H__ */