基本信息
源码名称:STM32 USB读卡器实例
源码大小:0.33M
文件格式:.rar
开发语言:C/C++
更新时间:2023-02-18
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 3 元 
   源码介绍

STM32 USB读卡器实例

学习STM32的USB功能使用,实现一个简单的USB读卡器

.
├── STM32 USB读卡器实例
│   ├── HARDWARE
│   │   ├── 24CXX
│   │   │   ├── 24cxx.c
│   │   │   ├── 24cxx.h
│   │   │   ├── myiic.c
│   │   │   └── myiic.h
│   │   ├── ADC
│   │   │   ├── adc.c
│   │   │   └── adc.h
│   │   ├── DAC
│   │   │   ├── dac.c
│   │   │   └── dac.h
│   │   ├── DMA
│   │   │   ├── dma.c
│   │   │   └── dma.h
│   │   ├── DS18B20
│   │   │   ├── ds18b20.c
│   │   │   └── ds18b20.h
│   │   ├── EXTI
│   │   │   ├── exti.c
│   │   │   └── exti.h
│   │   ├── FLASH
│   │   │   ├── flash.c
│   │   │   └── flash.h
│   │   ├── KEY
│   │   │   ├── key.c
│   │   │   └── key.h
│   │   ├── LCD
│   │   │   ├── FONT.H
│   │   │   ├── ILI93xx.c
│   │   │   └── LCD.h
│   │   ├── LED
│   │   │   ├── led.c
│   │   │   └── led.h
│   │   ├── NRF24L01
│   │   │   ├── 24l01.c
│   │   │   └── 24l01.h
│   │   ├── OLED
│   │   │   ├── oled.c
│   │   │   ├── oled.h
│   │   │   └── oledfont.h
│   │   ├── PS2
│   │   │   ├── mouse.c
│   │   │   ├── mouse.h
│   │   │   ├── ps2.c
│   │   │   └── ps2.h
│   │   ├── REMOTE
│   │   │   ├── remote.c
│   │   │   └── remote.h
│   │   ├── RTC
│   │   │   ├── rtc.c
│   │   │   └── rtc.h
│   │   ├── SD
│   │   │   ├── MMC_SD.C
│   │   │   └── mmc_sd.h
│   │   ├── SPI
│   │   │   ├── spi.c
│   │   │   └── spi.h
│   │   ├── STMFLASH
│   │   │   ├── stmflash.c
│   │   │   └── stmflash.h
│   │   ├── TIMER
│   │   │   ├── timer.c
│   │   │   └── timer.h
│   │   ├── TOUCH
│   │   │   ├── ctiic.c
│   │   │   ├── ctiic.h
│   │   │   ├── ft5206.c
│   │   │   ├── ft5206.h
│   │   │   ├── gt9147.c
│   │   │   ├── gt9147.h
│   │   │   ├── ott2001a.c
│   │   │   ├── ott2001a.h
│   │   │   ├── touch.c
│   │   │   └── touch.h
│   │   ├── WDG
│   │   │   ├── wdg.c
│   │   │   └── wdg.h
│   │   └── WKUP
│   │       ├── wkup.c
│   │       └── wkup.h
│   ├── MALLOC
│   │   ├── malloc.c
│   │   └── malloc.h
│   ├── OBJ
│   │   └── test.hex
│   ├── README.TXT
│   ├── SYSTEM
│   │   ├── delay
│   │   │   ├── delay.c
│   │   │   └── delay.h
│   │   ├── readme.txt
│   │   ├── sys
│   │   │   ├── core_cm3.h
│   │   │   ├── core_cmFunc.h
│   │   │   ├── core_cmInstr.h
│   │   │   ├── stm32f10x.h
│   │   │   ├── sys.c
│   │   │   ├── sys.h
│   │   │   └── system_stm32f10x.h
│   │   └── usart
│   │       ├── usart.c
│   │       └── usart.h
│   ├── USB
│   │   ├── CONFIG
│   │   │   ├── hw_config.c
│   │   │   ├── hw_config.h
│   │   │   ├── mass_mal.c
│   │   │   ├── mass_mal.h
│   │   │   ├── memory.c
│   │   │   ├── memory.h
│   │   │   ├── platform_config.h
│   │   │   ├── scsi_data.c
│   │   │   ├── usb_bot.c
│   │   │   ├── usb_bot.h
│   │   │   ├── usb_conf.h
│   │   │   ├── usb_desc.c
│   │   │   ├── usb_desc.h
│   │   │   ├── usb_endp.c
│   │   │   ├── usb_istr.c
│   │   │   ├── usb_istr.h
│   │   │   ├── usb_prop.c
│   │   │   ├── usb_prop.h
│   │   │   ├── usb_pwr.c
│   │   │   ├── usb_pwr.h
│   │   │   ├── usb_scsi.c
│   │   │   └── usb_scsi.h
│   │   └── STM32_USB-FS-Device_Driver
│   │       ├── inc
│   │       │   ├── usb_core.h
│   │       │   ├── usb_def.h
│   │       │   ├── usb_init.h
│   │       │   ├── usb_int.h
│   │       │   ├── usb_lib.h
│   │       │   ├── usb_mem.h
│   │       │   ├── usb_regs.h
│   │       │   ├── usb_sil.h
│   │       │   └── usb_type.h
│   │       └── src
│   │           ├── usb_core.c
│   │           ├── usb_init.c
│   │           ├── usb_int.c
│   │           ├── usb_mem.c
│   │           ├── usb_regs.c
│   │           └── usb_sil.c
│   ├── USER
│   │   ├── JLinkSettings.ini
│   │   ├── startup_stm32f10x_hd.s
│   │   ├── test.c
│   │   ├── test.uvguix.Administrator
│   │   ├── test.uvoptx
│   │   └── test.uvprojx
│   ├── USMART
│   │   ├── readme.txt
│   │   ├── usmart.c
│   │   ├── usmart.h
│   │   ├── usmart_config.c
│   │   ├── usmart_str.c
│   │   └── usmart_str.h
│   └── keilkill.bat
└── 好例子网_STM32 USB读卡器实例.rar

37 directories, 125 files