1
0
mirror of synced 2024-11-28 01:20:59 +01:00
Arduino-Aime-Reader/cmd.h
2021-04-04 17:17:17 +08:00

253 lines
6.8 KiB
C

#include "FastLED.h"
#define NUM_LEDS 6
#define DATA_PIN A3
#define BRI 50
CRGB leds[NUM_LEDS];
#include "Adafruit_PN532.h"
#define PN532_IRQ 4
Adafruit_PN532 nfc(PN532_IRQ, 16);
uint8_t cardtype = 0;
uint8_t uid[4], uL;
#define M2F_B 1 //指定从mifare读取第几block当作felica的IDm和PMm
uint8_t AimeKey[6] = {0x57, 0x43, 0x43, 0x46, 0x76, 0x32};
uint8_t MifareKey[6] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
enum {
SG_NFC_CMD_GET_FW_VERSION = 0x30,//获取FW版本
SG_NFC_CMD_GET_HW_VERSION = 0x32,//获取HW版本
SG_NFC_CMD_RADIO_ON = 0x40,//不处理
SG_NFC_CMD_RADIO_OFF = 0x41,//不处理
SG_NFC_CMD_POLL = 0x42,//发送卡号
SG_NFC_CMD_MIFARE_SELECT_TAG = 0x43,
SG_NFC_CMD_MIFARE_SET_KEY_BANA = 0x50,
SG_NFC_CMD_MIFARE_READ_BLOCK = 0x52,
SG_NFC_CMD_MIFARE_SET_KEY_AIME = 0x54,
SG_NFC_CMD_MIFARE_AUTHENTICATE = 0x55, /* guess based on time sent */
SG_NFC_CMD_RESET = 0x62,//重置读卡器
SG_NFC_CMD_FELICA_ENCAP = 0x71,
SG_RGB_CMD_SET_COLOR = 0x81,//LED颜色设置
SG_RGB_CMD_RESET = 0xF5,//LED重置
SG_RGB_CMD_GET_INFO = 0xF0,//LED信息获取
FELICA_CMD_POLL = 0x00,//ENCAP用
FELICA_CMD_GET_SYSTEM_CODE = 0x0C,
FELICA_CMD_NDA_A4 = 0xA4,
};
typedef union packet_req {
uint8_t bytes[256];
struct {
uint8_t frame_len;
uint8_t addr;
uint8_t seq_no;
uint8_t cmd;
uint8_t payload_len;
union {
uint8_t key[6];// sg_nfc_req_mifare_set_key
uint8_t color_payload[3];//sg_led_req_set_color
struct {// sg_nfc_cmd_mifare_read_block
uint8_t uid[4];
uint8_t block_no;
};
struct {// sg_nfc_req_felica_encap
uint8_t IDm[8];
uint8_t encap_len;
uint8_t code;
uint8_t felica_payload[241];
};
};
};
} packet_req_t;
typedef union packet_res {
uint8_t bytes[256];
struct {
uint8_t frame_len;
uint8_t addr;
uint8_t seq_no;
uint8_t cmd;
uint8_t status;
uint8_t payload_len;
union {
char version[23];// sg_nfc_res_get_fw_version,sg_nfc_res_get_hw_version
uint8_t reset_payload; //sg_led_res_reset
uint8_t info_payload[9]; //sg_led_res_get_info
uint8_t block[16];// sg_nfc_res_mifare_read_block
struct {// sg_nfc_res_poll
uint8_t count;
uint8_t type;
uint8_t id_len;
uint8_t poll[16];//aime uid or felica IDm+PMm
};
struct {// sg_nfc_res_felica_encap
uint8_t encap_len;
uint8_t code;
union {
struct {
uint8_t encap_block[16];
uint8_t system_code[2];
};
struct {
uint8_t encap_IDm[8];
uint8_t felica_payload[241];
};
};
};
};
};
} packet_res_t;
static packet_req_t req;
static packet_res_t res;
static void sg_res_init(uint8_t payload_len = 0) { //初始化模板
res.frame_len = 6 + payload_len;
res.addr = req.addr;
res.seq_no = req.seq_no;
res.cmd = req.cmd;
res.status = 0;
res.payload_len = payload_len;
}
static void sg_nfc_cmd_reset() {//重置读卡器
nfc.begin();
if (nfc.getFirmwareVersion()) {
nfc.SAMConfig();
sg_res_init();
res.status = 3;
return;
}
fill_solid(leds, NUM_LEDS, 0xFFFF00);
FastLED[0].show(leds, NUM_LEDS, BRI);
}
static void sg_nfc_cmd_get_fw_version() {
sg_res_init(sizeof(res.version));
memcpy(res.version, "TN32MSEC003S F/W Ver1.2E", sizeof(res.version));
}
static void sg_nfc_cmd_get_hw_version() {
sg_res_init(sizeof(res.version));
memcpy(res.version, "TN32MSEC003S H/W Ver3.0J", sizeof(res.version));
}
static void sg_nfc_cmd_mifare_set_key_aime() { //设置aime的读取key
sg_res_init();
// memcpy(req.key, AimeKey, sizeof(AimeKey));
}
static void sg_led_cmd_reset() {
sg_res_init(sizeof(res.reset_payload));
res.reset_payload = 0;
fill_solid(leds, NUM_LEDS, 0x000000);
FastLED[0].show(leds, NUM_LEDS, BRI);
}
static void sg_led_cmd_get_info() {
sg_res_init(9);
static uint8_t info[9] = {'1', '5', '0', '8', '4', 0xFF, 0x10, 0x00, 0x12};
memcpy(res.info_payload, info, 9);
}
static void sg_led_cmd_set_color() {
uint8_t r = req.color_payload[0];
uint8_t g = req.color_payload[1];
uint8_t b = req.color_payload[2];
fill_solid(leds, NUM_LEDS, CRGB(r, g, b));
FastLED[0].show(leds, NUM_LEDS, BRI);
}
static void sg_nfc_cmd_radio_on() {
sg_res_init();
nfc.startPassiveTargetIDDetection(PN532_MIFARE_ISO14443A);
delay(10);
if (!digitalRead(PN532_IRQ) && nfc.readDetectedPassiveTargetID(uid, &uL)) {
if (nfc.mifareclassic_AuthenticateBlock(uid, uL, 1, MIFARE_CMD_AUTH_B, AimeKey)) {
cardtype = 0x10;
return;
}
}
nfc.startPassiveTargetIDDetection(PN532_MIFARE_ISO14443A);
delay(10);
if (!digitalRead(PN532_IRQ) && nfc.readDetectedPassiveTargetID(uid, &uL)) {
if (nfc.mifareclassic_AuthenticateBlock(uid, uL, M2F_B, MIFARE_CMD_AUTH_A, MifareKey)) {
cardtype = 0x20;
return;
}
}
}
static void sg_nfc_cmd_radio_off() {
cardtype = 0;
uint8_t EKey[6] = {0x11, 0x45, 0x14, 0x19, 0x19, 0x81};
nfc.mifareclassic_AuthenticateBlock(uid, uL, 63, MIFARE_CMD_AUTH_A, EKey);//断开卡片
sg_res_init();
}
static void sg_nfc_cmd_poll() { //卡号发送
if (cardtype == 0x10) {
res.count = 1;
res.type = 0x10;
res.id_len = uL;
memcpy(res.poll, uid, uL);
sg_res_init(7);
return;
}
if (cardtype == 0x20 && nfc.mifareclassic_ReadDataBlock(M2F_B, res.poll)) {
sg_res_init(19);//count,type,id_len,IDm,PMm
res.count = 1;
res.type = 0x20;
res.id_len = 0x10;
return;
}
sg_res_init(1);
res.count = 0;
}
static void sg_nfc_cmd_mifare_select_tag() {
sg_res_init();
}
static void sg_nfc_cmd_mifare_read_block() {//读取卡扇区数据
sg_res_init();
if (req.block_no > 2) {
return;
}
if (nfc.mifareclassic_ReadDataBlock(req.block_no, res.block)) {
sg_res_init(0x10);
return;
}
}
static void sg_nfc_cmd_felica_encap() {
if (!nfc.mifareclassic_ReadDataBlock(M2F_B, res.encap_block)) {
sg_res_init();
res.status = 1;
return;
}
uint8_t code = req.code;
res.code = code + 1;
switch (code) {
case FELICA_CMD_POLL:
sg_res_init(0x14);
res.system_code[0] = 0x00;
res.system_code[1] = 0x00;
break;
case FELICA_CMD_GET_SYSTEM_CODE:
sg_res_init(0x0D);
res.felica_payload[0] = 0x01;
res.felica_payload[1] = 0x00;
res.felica_payload[2] = 0x00;
break;
case FELICA_CMD_NDA_A4:
// sg_res_init(0x0B);
// res.felica_payload[0] = 0x00;
sg_res_init();
res.status = 1;
break;
}
res.encap_len = res.payload_len;
}