STM32F407ZG的IC卡读卡器设计

2019-07-20 21:14发布

就是将非接触式ic卡通过RFID传输到STM32上,并在LCD上面显示,并通过数码管进行数据的修改
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
7条回答
坐飞机的贝塔
1楼-- · 2019-07-21 03:13
#include "stm32f4xx.h"
#include "stdio.h"
#include "uart.h"
#include "SysTick.h"
#include "lcd.h"
#include "Gpio.h"
//#include "stm32f10x.h"
#include "tm1638.h"

void Menu_RFIDTest(void)
{  u8 j,i,t;
        unsigned long temp;
        //LCD_ShowString(150, 60, "±¸×¢£o°′èÎòa°′¼ü½øèëày3ì2aêÔ½çÃæ", Red, Black);       
        //while(Read_key()!=0x07)
        while(1)
        {
                Send_Com();
        }
///½áêøoóμÄ′|àí
       
}

////////////////////////////////////////////////
void nvic_config(void)
{
        NVIC_InitTypeDef NVIC_InitStructure;
        /* NVIC configuration */
        /* Configure the Priority Group to 2 bits */
        NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);

        /* Enable the USART3 Interrupt */
        NVIC_InitStructure.NVIC_IRQChannel = USART3_IRQn;
        NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
        NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
        NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
        NVIC_Init(&NVIC_InitStructure);
                /* Enable the USART6 Interrupt */
        NVIC_InitStructure.NVIC_IRQChannel = USART6_IRQn;
        NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
        NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
        NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
        NVIC_Init(&NVIC_InitStructure);
}




int main(void)
{
        u8 keyDat,i,j;
        u8 Menu_flag=0;
        u8 Menu_Value[2];//¶¨òåá½¼¶2Ëμ¥
        SysTick_Init();
        nvic_config();
        uart_init();
        uart6_init();
  lcd_init();                                                                                           /*Ïμí33õê¼»ˉ*/
        //////////////////////////////////////////////////////////////////////////////////
        //////////////////////////////////////////////////////////////////////////////////
        lcd_clear(Black);
        LCD_DrawRectangle(0,0, 479, 271, Green);
        LCD_DrawRectangle(5,5, 474, 266, Green);
        LCD_ShowString(150, 0, "--STM32F407 êμÑé¿a·¢ƽì¨--", Red, Black);       
        LCD_ShowString(60,60, " êμÑé7:RFIDêμÑé", White, Black);       
          LCD_ShowString(60, 120, "1£©2ù×÷2½Öè£o°ÑRFIDÄ£¿é2åμ½à©Õ1Ä£¿éBλÖÃ", White, Black);       
  LCD_ShowString(60, 150, "2£©2ù×÷2½Öè£oóÃ′®¿úÏßᬽó′®¿ú", White, Black);       
        LCD_ShowString(30, 150, "êμÑé½á1û£oË¢¿¨ÏÔê¾Ïà1ØDÅÏ¢", White, Black);
        while(1)
        Menu_RFIDTest();
       
       
       

}

这是RFID的读操作, 数码管的修改代码怎么写
坐飞机的贝塔
2楼-- · 2019-07-21 09:02
有木有人有程序的啊
正点原子
3楼-- · 2019-07-21 14:59
帮顶
amengyao
4楼-- · 2019-07-21 17:50
帮顶,是不是接触式也差不多
weilong1370
5楼-- · 2019-07-21 19:09
 精彩回答 2  元偷偷看……
a458433334
6楼-- · 2019-07-21 23:26
RC522吗?

一周热门 更多>