基于中颖88F58主控和FM1702射频IC卡读写IC的模块,使用UART通讯接口进行外部通讯。设计成熟可靠,已经商业化应用,平均每月3K以上用量
附件是原理图,PCB图纸和源代码(IAR51平台开发)
Altium Designer画的原理图和PCB图如下:(51hei附件中可下载工程文件)
单片机源程序如下:
- #include <ioAT89S52.h>
- #include "IO.h"
- //#include "FM1702NL.h"
- #include "FSM_CORE.h"
- #include "MSG_LIST.h"
- #include "DEBUG.h"
- #include <stdbool.h>
- #include "checksum.h"
- #include "input.h"
- #include "motor.h"
- #include "uart.h"
- //#include "keyCtrl.h"
- int main( void )
- {
- Port_Init();
- #ifdef DEBUG
- debug_init();
- #endif
- init_motor();
- init_uart();
- init_inp();
- fsm_core();
- //while(1);
- return 0;
- }
[color=rgb(51, 102, 153) !important]复制代码
|