资源简介
PA1100磁头解码芯片驱动代码,支持银行卡轨道1、2、3数据,支持正反向刷卡,执行结果分别打印出磁条卡的3个轨道数据
代码片段和文件信息
/*************************************************************************************
* Copyright (c) 2009 by PROCHIP Limited.
* PROPRIETARY RIGHTS of PROCHIP Limited are involved in the subject matter of this
* material. All manufacturing reproduction use and sales rights
* pertaining to this subject matter are governed by the license agreement.
* The recipient of this software implicitly accepts the terms of the license.
*
* File Name: pa1100.c
*
* File Description: pa1100的函数文件
*
* Version Date Author
*------------------------------------------------------------------------------------
* 1.0 2012.11.15 lori
*
***************************************************************************************/
#include
#include
#include “pa1100.h“
#define time 300
U8 CardData[380];
U8 AsciiData[]={
0xff0xff‘ ‘‘!‘‘“‘‘#‘‘$‘‘%‘‘&‘‘?‘‘(‘‘)‘‘*‘‘+‘‘‘‘-‘‘.‘‘/‘
‘0‘‘1‘‘2‘‘3‘‘4‘‘5‘‘6‘‘7‘‘8‘‘9‘‘:‘‘;‘‘<‘‘=‘‘>‘‘?‘
‘@‘‘A‘‘B‘‘C‘‘D‘‘E‘‘F‘‘G‘‘H‘‘I‘‘J‘‘K‘‘L‘‘M‘‘N‘‘O‘
‘P‘‘Q‘‘R‘‘S‘‘T‘‘U‘‘V‘‘W‘‘X‘‘Y‘‘Z‘‘[‘‘\\‘‘]‘‘^‘‘_‘
‘0‘‘1‘‘2‘‘3‘‘4‘‘5‘‘6‘‘7‘‘8‘‘9‘‘:‘‘;‘‘<‘‘=‘‘>‘‘?‘};
U8 MagData[]={
0x000x800x400x010x020x430x040x450x460x070x080x490x4A0x0B0x4C0x0D0x0E
0x4F
0x100x510x520x130x540x150x160x570x580x190x1A0x5B0x1C0x5D0x5E0x1F
0x200x610x620x230x640x250x260x670x680x290x2A0x6B0x2C0x6D0x6E0x2F
0x700x310x320x730x340x750x760x370x380x790x7A0x3B0x7C0x3D0x3E0x7F
0x900x810x820x930x840x950x960x870x880x990x9A0x8B0x9C0x8D0x8E0x9F};
/*****************************************************************
函数原型:U8 Track_Data_Decode(U8 data)
入口参数:data:要译码的数据
返回参数:data:译码后的数据
函数功能:轨道数据译码
******************************************************************/
U8 Track_Data_Decode(U8 data)
{
U16 temp = 0;
data = ~data;
while(temp < 82)
{
//check table to find ASCII
if(data == MagData[temp])
{
data = AsciiData[temp];
break;
}
temp++;
}
if(temp == 82)
{
data = 0xff;
if(AsciiData != 0x00)
error = temp;
}
return data;
}
/*****************************************************************
函数原型:void Pa1100_Port_Init(void)
入口参数:无
返回参数:无
函数功能:配置IO端口
******************************************************************/
void Pa1100_Port_Init(void)
{
SET_BIT(PA1100_DATA_SEL PA1100_DATA_BIT);
CLR_BIT(PA1100_DATA_DIR PA1100_DATA_BIT);
SET_BIT(PA1100_STROBE_SEL PA1100_STROBE_BIT);
CLR_BIT(PA1100_STROBE_DIR PA1100_STROBE_BIT);
}
/*****************************************************************
函数原型:void Pa1100_Reset(void)
入口参数:无
返回参数:无
函数功能:PA1100复位
*************************************************
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 14491 2012-12-08 12:34 PA100\pa1100.c
文件 2925 2012-12-08 12:33 PA100\pa1100.h
目录 0 2013-02-19 14:19 PA100
----------- --------- ---------- ----- ----
17416 3
相关资源
- 最全系统辨识源代码,包括多种最小
- J2ME太空之战源代码
- 国外开源视频监控iSpy源代码20180905
- 《设计模式》刘伟第一版&&第二版
- 基于面向对象方法学的银行储蓄系统
- 哈工大威海编译原理实验报告和源代
- 银行信用卡管理系统源代码
- 基于opencv的数人头程序源代码
- 基于单幅图像的快速去雾源码实现
- QT旅游攻略软件程序源代码
- 简易手机通讯录
- MicroSIP 增加 g729 源代码
- 巴巴运动网完整源代码
- 40款经典黑客编程源代码.rar
- iOS Programming The Big Nerd Ranch Guide 第6版
- 38套精选前端门户网站模板
-
Flash+Actionsc
ript+3.0+高级动画教程中文 - eshop毕业论文加源代码
- 招干考试管理系统*源代码
- 设计模式课后习题源代码
- VC编写的ICMP木马源代码
- 速算纸牌24点小游戏
- 东北大学软件学院编译方法两次实验
- 二进制炸弹完整解决过程+源代码
- 六子冲棋博弈程序设计教程原创源代
- VC仿炫酷的黑客帝国屏保源代码
- 图像处理及源码-5个可以使用包含源代
- lisp源代码 ***工具箱代码 cad二次开发
- Ieee 1588 源代码
- 一个最简单的二代身份证阅读器通用
评论
共有 条评论