1 Star 1 Fork 1

yicao/pboc3.0

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
apdu.h 606 Bytes
一键复制 编辑 原始数据 按行查看 历史
yicao 提交于 2015-11-14 15:29 . 实现apdu接口
#ifndef _APDU_H_
#define _APDU_H_
#include "error.h"
typedef struct apdu_ask {
unsigned char Cla;
unsigned char Ins;
unsigned char P1;
unsigned char P2;
unsigned char Len;
unsigned char Data[255];
unsigned char Le;
}ApduAsk;
typedef struct apdu_ack {
unsigned char Data[255];
unsigned char Len;
unsigned int Sw12;
}ApduAck;
struct apdu_interface {
int (*Exchange)(const ApduAsk *ask, ApduAck *ack, Error *err);
};
extern struct apdu_interface moduleApdu;
void ApduModuleInit(int (*Exchange)(const ApduAsk *ask, ApduAck *ack, Error *err));
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yicao/pboc3.0.git
git@gitee.com:yicao/pboc3.0.git
yicao
pboc3.0
pboc3.0
master

搜索帮助