实例介绍
本人亲测成功,可以跑起来。网上找到的源代码,移植成功,进过测试和调试,在iar和keil4开发环境上都能够跑起来。发给大家作为参考,源代码功能说明都在里面,仔细看看的懂。库函数和工程文件也全部在里面。
【实例截图】
【核心代码】
a86aba0e-9df5-4010-bd5e-dd2c7d94df05
└── 科星nfc 资料
├── NFC
│ ├── LiquidCrystal_I2C
│ │ ├── examples
│ │ │ ├── CustomChars
│ │ │ │ └── CustomChars.pde
│ │ │ ├── HelloWorld
│ │ │ │ ├── applet
│ │ │ │ │ ├── core.a
│ │ │ │ │ ├── HardwareSerial.cpp.o
│ │ │ │ │ ├── HelloWorld.cpp
│ │ │ │ │ ├── HelloWorld.cpp.eep
│ │ │ │ │ ├── HelloWorld.cpp.elf
│ │ │ │ │ ├── HelloWorld.cpp.hex
│ │ │ │ │ ├── HelloWorld.cpp.o
│ │ │ │ │ ├── LiquidCrystal_I2C
│ │ │ │ │ │ └── LiquidCrystal_I2C.cpp.o
│ │ │ │ │ ├── pins_arduino.c.o
│ │ │ │ │ ├── Print.cpp.o
│ │ │ │ │ ├── WInterrupts.c.o
│ │ │ │ │ ├── Wire
│ │ │ │ │ │ ├── utility
│ │ │ │ │ │ │ └── twi.c.o
│ │ │ │ │ │ └── Wire.cpp.o
│ │ │ │ │ ├── wiring_analog.c.o
│ │ │ │ │ ├── wiring.c.o
│ │ │ │ │ ├── wiring_digital.c.o
│ │ │ │ │ ├── wiring_pulse.c.o
│ │ │ │ │ ├── wiring_shift.c.o
│ │ │ │ │ └── WMath.cpp.o
│ │ │ │ └── HelloWorld.pde
│ │ │ └── SerialDisplay
│ │ │ └── SerialDisplay.pde
│ │ ├── keywords.txt
│ │ ├── LiquidCrystal_I2C.cpp
│ │ ├── LiquidCrystal_I2C.h
│ │ └── LiquidCrystal_I2C.o
│ ├── NFC_IIC1602__2_
│ │ └── NFC_IIC1602__2_.ino
│ └── Wire
│ ├── examples
│ │ ├── digital_potentiometer
│ │ │ └── digital_potentiometer.ino
│ │ ├── master_reader
│ │ │ └── master_reader.ino
│ │ ├── master_writer
│ │ │ └── master_writer.ino
│ │ ├── SFRRanger_reader
│ │ │ └── SFRRanger_reader.ino
│ │ ├── slave_receiver
│ │ │ └── slave_receiver.ino
│ │ └── slave_sender
│ │ └── slave_sender.ino
│ ├── keywords.txt
│ ├── utility
│ │ ├── twi.c
│ │ └── twi.h
│ ├── Wire.cpp
│ └── Wire.h
├── NFC_WR
│ ├── AndroidManifest.xml
│ ├── bin
│ │ ├── AndroidManifest.xml
│ │ ├── classes
│ │ │ └── com
│ │ │ └── example
│ │ │ └── nfc_wr
│ │ │ ├── BuildConfig.class
│ │ │ ├── MainActivity$1.class
│ │ │ ├── MainActivity.class
│ │ │ ├── R$attr.class
│ │ │ ├── R$dimen.class
│ │ │ ├── R$drawable.class
│ │ │ ├── R$id.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$menu.class
│ │ │ ├── R$string.class
│ │ │ ├── R$style.class
│ │ │ ├── R.class
│ │ │ ├── Write2Nfc$1.class
│ │ │ └── Write2Nfc.class
│ │ ├── classes.dex
│ │ ├── dexedLibs
│ │ │ └── android-support-v4-1297426d473cab30302b868588584662.jar
│ │ ├── jarlist.cache
│ │ ├── NFC_WR.apk
│ │ ├── res
│ │ │ └── crunch
│ │ │ ├── drawable-hdpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── drawable-mdpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ └── ic_launcher.png
│ │ │ └── drawable-xxhdpi
│ │ │ └── ic_launcher.png
│ │ └── resources.ap_
│ ├── gen
│ │ └── com
│ │ └── example
│ │ └── nfc_wr
│ │ ├── BuildConfig.java
│ │ └── R.java
│ ├── ic_launcher-web.png
│ ├── libs
│ │ └── android-support-v4.jar
│ ├── lint.xml
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xxhdpi
│ │ │ └── ic_launcher.png
│ │ ├── layout
│ │ │ ├── activity_main.xml
│ │ │ └── write_ifo.xml
│ │ ├── menu
│ │ │ └── main.xml
│ │ ├── values
│ │ │ ├── dimens.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ │ ├── values-sw600dp
│ │ │ └── dimens.xml
│ │ ├── values-sw720dp-land
│ │ │ └── dimens.xml
│ │ ├── values-v11
│ │ │ └── styles.xml
│ │ └── values-v14
│ │ └── styles.xml
│ └── src
│ └── com
│ └── example
│ └── nfc_wr
│ ├── MainActivity.java
│ └── Write2Nfc.java
├── nfc文档
│ ├── CORX-NFC_Test.exe
│ ├── libnfc_1.5.0
│ │ ├── cmd.bat
│ │ ├── libnfc.dll
│ │ ├── libusb0.dll
│ │ ├── nfc-anticol.exe
│ │ ├── nfc-dep-initiator.exe
│ │ ├── nfc-dep-target.exe
│ │ ├── nfc-emulate-forum-tag4.exe
│ │ ├── nfc-emulate-tag.exe
│ │ ├── nfc-emulate-uid.exe
│ │ ├── nfc-list.exe
│ │ ├── nfc-mfclassic.exe
│ │ ├── nfc-mfultralight.exe
│ │ ├── nfc-poll.exe
│ │ ├── nfc-relay.exe
│ │ ├── nfc-relay-picc.exe
│ │ ├── test.bat
│ │ └── winscard.dll
│ ├── NFC P2P.jpg
│ ├── NFC 上位机P2P.jpg
│ ├── NFC-读写卡上位机.png
│ ├── PN532__Datasheet (1).pdf
│ ├── PN532 User Manual UM0701-02.pdf
│ ├── PN532快速使用手册.pdf
│ ├── QQ截图20131128085053.png
│ ├── 科星F107开发板学习笔记应用篇之NFC标签控制LED灯.pdf
│ └── 科星NFC模块用户手册.pdf
├── NFC组模.png
├── 科星107开发板资料1
│ ├── 科星F107开发板学习笔记应用篇之NFC标签控制LED灯.pdf
│ ├── 科星F107开发板应用篇之NFC标签控制LED灯(IAR5.4&MDK4.2)
│ │ ├── Libraries
│ │ │ ├── CMSIS
│ │ │ │ ├── CM3
│ │ │ │ │ ├── CoreSupport
│ │ │ │ │ │ ├── core_cm3.c
│ │ │ │ │ │ └── core_cm3.h
│ │ │ │ │ └── DeviceSupport
│ │ │ │ │ └── ST
│ │ │ │ │ └── STM32F10x
│ │ │ │ │ ├── Release_Notes.html
│ │ │ │ │ ├── startup
│ │ │ │ │ │ ├── arm
│ │ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ │ ├── gcc_ride7
│ │ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ │ ├── iar
│ │ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ │ └── TrueSTUDIO
│ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ ├── stm32f10x.h
│ │ │ │ │ ├── system_stm32f10x.c
│ │ │ │ │ └── system_stm32f10x.h
│ │ │ │ ├── CMSIS_changes.htm
│ │ │ │ ├── CMSIS debug support.htm
│ │ │ │ ├── Documentation
│ │ │ │ │ └── CMSIS_Core.htm
│ │ │ │ └── License.doc
│ │ │ └── STM32F10x_StdPeriph_Driver
│ │ │ ├── inc
│ │ │ │ ├── misc.h
│ │ │ │ ├── stm32f10x_adc.h
│ │ │ │ ├── stm32f10x_bkp.h
│ │ │ │ ├── stm32f10x_can.h
│ │ │ │ ├── stm32f10x_cec.h
│ │ │ │ ├── stm32f10x_crc.h
│ │ │ │ ├── stm32f10x_dac.h
│ │ │ │ ├── stm32f10x_dbgmcu.h
│ │ │ │ ├── stm32f10x_dma.h
│ │ │ │ ├── stm32f10x_exti.h
│ │ │ │ ├── stm32f10x_flash.h
│ │ │ │ ├── stm32f10x_fsmc.h
│ │ │ │ ├── stm32f10x_gpio.h
│ │ │ │ ├── stm32f10x_i2c.h
│ │ │ │ ├── stm32f10x_iwdg.h
│ │ │ │ ├── stm32f10x_pwr.h
│ │ │ │ ├── stm32f10x_rcc.h
│ │ │ │ ├── stm32f10x_rtc.h
│ │ │ │ ├── stm32f10x_sdio.h
│ │ │ │ ├── stm32f10x_spi.h
│ │ │ │ ├── stm32f10x_tim.h
│ │ │ │ ├── stm32f10x_usart.h
│ │ │ │ └── stm32f10x_wwdg.h
│ │ │ ├── Release_Notes.html
│ │ │ └── src
│ │ │ ├── misc.c
│ │ │ ├── stm32f10x_adc.c
│ │ │ ├── stm32f10x_bkp.c
│ │ │ ├── stm32f10x_can.c
│ │ │ ├── stm32f10x_cec.c
│ │ │ ├── stm32f10x_crc.c
│ │ │ ├── stm32f10x_dac.c
│ │ │ ├── stm32f10x_dbgmcu.c
│ │ │ ├── stm32f10x_dma.c
│ │ │ ├── stm32f10x_exti.c
│ │ │ ├── stm32f10x_flash.c
│ │ │ ├── stm32f10x_fsmc.c
│ │ │ ├── stm32f10x_gpio.c
│ │ │ ├── stm32f10x_i2c.c
│ │ │ ├── stm32f10x_iwdg.c
│ │ │ ├── stm32f10x_pwr.c
│ │ │ ├── stm32f10x_rcc.c
│ │ │ ├── stm32f10x_rtc.c
│ │ │ ├── stm32f10x_sdio.c
│ │ │ ├── stm32f10x_spi.c
│ │ │ ├── stm32f10x_tim.c
│ │ │ ├── stm32f10x_usart.c
│ │ │ └── stm32f10x_wwdg.c
│ │ └── Project
│ │ └── 科星F107开发板应用篇之NFC标签控制LED灯(IAR5.4&MDK4.2)
│ │ ├── delay.c
│ │ ├── delay.h
│ │ ├── EWARM
│ │ │ ├── Backup of Project.ewd
│ │ │ ├── Backup of Project.ewp
│ │ │ ├── Project.dep
│ │ │ ├── Project.ewd
│ │ │ ├── Project.ewp
│ │ │ ├── Project.eww
│ │ │ ├── readme.txt
│ │ │ ├── settings
│ │ │ │ ├── Project.cspy.bat
│ │ │ │ ├── Project.dbgdt
│ │ │ │ ├── Project.dni
│ │ │ │ ├── Project_STM3210C-EVAL.jlink
│ │ │ │ └── Project.wsdt
│ │ │ ├── stm32f10x_flash_extsram.icf
│ │ │ ├── stm32f10x_flash.icf
│ │ │ ├── stm32f10x_nor.icf
│ │ │ └── stm32f10x_ram.icf
│ │ ├── HiTOP
│ │ │ ├── STM32100B-EVAL
│ │ │ │ ├── cstart_thumb2.asm
│ │ │ │ ├── Project.htp
│ │ │ │ ├── readme.txt
│ │ │ │ └── Settings
│ │ │ │ ├── arm_arch.lsl
│ │ │ │ ├── link.lnk
│ │ │ │ ├── reset_appl.scr
│ │ │ │ ├── reset_go_main.scr
│ │ │ │ ├── StartupScript.scr
│ │ │ │ └── stm32f10x_MD_VL.lsl
│ │ │ ├── STM32100E-EVAL
│ │ │ │ ├── cstart_thumb2.asm
│ │ │ │ ├── Project.htp
│ │ │ │ ├── readme.txt
│ │ │ │ ├── setstack.asm
│ │ │ │ └── Settings
│ │ │ │ ├── arm_arch.lsl
│ │ │ │ ├── link_extsram.lnk
│ │ │ │ ├── link.lnk
│ │ │ │ ├── reset_appl.scr
│ │ │ │ ├── reset_go_main.scr
│ │ │ │ ├── StartupScript.scr
│ │ │ │ ├── stm32f10x_hd_vl_extsram.lsl
│ │ │ │ └── stm32f10x_hd_vl.lsl
│ │ │ ├── STM3210B-EVAL
│ │ │ │ ├── cstart_thumb2.asm
│ │ │ │ ├── Project.htp
│ │ │ │ ├── readme.txt
│ │ │ │ └── Settings
│ │ │ │ ├── arm_arch.lsl
│ │ │ │ ├── link.lnk
│ │ │ │ ├── reset_appl.scr
│ │ │ │ ├── reset_go_main.scr
│ │ │ │ ├── StartupScript.scr
│ │ │ │ └── STM32F10x_md.lsl
│ │ │ ├── STM3210C-EVAL
│ │ │ │ ├── cstart_thumb2.asm
│ │ │ │ ├── Project.htp
│ │ │ │ ├── readme.txt
│ │ │ │ └── Settings
│ │ │ │ ├── arm_arch.lsl
│ │ │ │ ├── link.lnk
│ │ │ │ ├── reset_appl.scr
│ │ │ │ ├── reset_go_main.scr
│ │ │ │ ├── StartupScript.scr
│ │ │ │ └── STM32F10x_cl.lsl
│ │ │ ├── STM3210E-EVAL
│ │ │ │ ├── cstart_thumb2.asm
│ │ │ │ ├── Project.htp
│ │ │ │ ├── readme.txt
│ │ │ │ ├── setstack.asm
│ │ │ │ └── Settings
│ │ │ │ ├── arm_arch.lsl
│ │ │ │ ├── flash_nor.scr
│ │ │ │ ├── linkextsram.lnk
│ │ │ │ ├── link.lnk
│ │ │ │ ├── linknor.lnk
│ │ │ │ ├── reset_appl.scr
│ │ │ │ ├── reset_go_main.scr
│ │ │ │ ├── StartupScript.scr
│ │ │ │ ├── STM32F10x_extsram.lsl
│ │ │ │ ├── STM32F10x_hd.lsl
│ │ │ │ └── STM32F10xnor.lsl
│ │ │ └── STM3210E-EVAL_XL
│ │ │ ├── cstart_thumb2.asm
│ │ │ ├── Project.htp
│ │ │ ├── readme.txt
│ │ │ ├── setstack.asm
│ │ │ └── Settings
│ │ │ ├── arm_arch.lsl
│ │ │ ├── linkextsram.lnk
│ │ │ ├── link.lnk
│ │ │ ├── reset_appl.scr
│ │ │ ├── reset_go_main.scr
│ │ │ ├── StartupScript.scr
│ │ │ ├── STM32F10x_xl_extsram.lsl
│ │ │ └── STM32F10x_XL.lsl
│ │ ├── main.c
│ │ ├── MDK-ARM
│ │ │ ├── JLinkLog.txt
│ │ │ ├── JLinkSettings.ini
│ │ │ ├── note.txt
│ │ │ ├── Project_STM3210C-EVAL.dep
│ │ │ ├── Project.uvgui.ZM
│ │ │ ├── Project.uvgui_ZM.bak
│ │ │ ├── Project.uvopt
│ │ │ ├── Project_uvopt.bak
│ │ │ ├── Project.uvproj
│ │ │ ├── Project_uvproj.bak
│ │ │ ├── readme.txt
│ │ │ ├── STM3210C-EVAL
│ │ │ │ ├── STM3210C-EVAL.plg
│ │ │ │ ├── STM3210C-EVAL.sct
│ │ │ │ └── STM3210C-EVAL.tra
│ │ │ └── 跳线说明.txt
│ │ ├── nfc.c
│ │ ├── nfc.h
│ │ ├── readme.txt
│ │ ├── Release_Notes.html
│ │ ├── RIDE
│ │ │ ├── Project.rapp
│ │ │ ├── Project.rprj
│ │ │ ├── readme.txt
│ │ │ └── stm32f10x_flash_extsram.ld
│ │ ├── stm32f10x_conf.h
│ │ ├── stm32f10x_it.c
│ │ ├── stm32f10x_it.h
│ │ ├── system_stm32f10x.c
│ │ └── TrueSTUDIO
│ │ ├── note.txt
│ │ ├── STM32100B-EVAL
│ │ │ ├── readme.txt
│ │ │ └── stm32_flash.ld
│ │ ├── STM32100E-EVAL
│ │ │ ├── readme.txt
│ │ │ └── stm32_flash.ld
│ │ ├── STM3210B-EVAL
│ │ │ ├── readme.txt
│ │ │ └── stm32_flash.ld
│ │ ├── STM3210C-EVAL
│ │ │ ├── readme.txt
│ │ │ └── stm32_flash.ld
│ │ ├── STM3210E-EVAL
│ │ │ ├── readme.txt
│ │ │ └── stm32_flash.ld
│ │ ├── STM3210E-EVAL_XL
│ │ │ ├── readme.txt
│ │ │ └── stm32_flash.ld
│ │ └── stm32f10x_flash_extsram.ld
│ └── 科星F107开发板应用篇之NFC标签控制LED灯(IAR6.4)
│ ├── Libraries
│ │ ├── CMSIS
│ │ │ ├── CM3
│ │ │ │ └── DeviceSupport
│ │ │ │ └── ST
│ │ │ │ └── STM32F10x
│ │ │ │ ├── Release_Notes.html
│ │ │ │ ├── startup
│ │ │ │ │ ├── arm
│ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ ├── gcc_ride7
│ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ ├── iar
│ │ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ │ └── TrueSTUDIO
│ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ ├── stm32f10x.h
│ │ │ │ ├── system_stm32f10x.c
│ │ │ │ └── system_stm32f10x.h
│ │ │ ├── CMSIS_changes.htm
│ │ │ ├── CMSIS debug support.htm
│ │ │ ├── Documentation
│ │ │ │ └── CMSIS_Core.htm
│ │ │ └── License.doc
│ │ └── STM32F10x_StdPeriph_Driver
│ │ ├── inc
│ │ │ ├── misc.h
│ │ │ ├── stm32f10x_adc.h
│ │ │ ├── stm32f10x_bkp.h
│ │ │ ├── stm32f10x_can.h
│ │ │ ├── stm32f10x_cec.h
│ │ │ ├── stm32f10x_crc.h
│ │ │ ├── stm32f10x_dac.h
│ │ │ ├── stm32f10x_dbgmcu.h
│ │ │ ├── stm32f10x_dma.h
│ │ │ ├── stm32f10x_exti.h
│ │ │ ├── stm32f10x_flash.h
│ │ │ ├── stm32f10x_fsmc.h
│ │ │ ├── stm32f10x_gpio.h
│ │ │ ├── stm32f10x_i2c.h
│ │ │ ├── stm32f10x_iwdg.h
│ │ │ ├── stm32f10x_pwr.h
│ │ │ ├── stm32f10x_rcc.h
│ │ │ ├── stm32f10x_rtc.h
│ │ │ ├── stm32f10x_sdio.h
│ │ │ ├── stm32f10x_spi.h
│ │ │ ├── stm32f10x_tim.h
│ │ │ ├── stm32f10x_usart.h
│ │ │ └── stm32f10x_wwdg.h
│ │ ├── Release_Notes.html
│ │ └── src
│ │ ├── misc.c
│ │ ├── stm32f10x_adc.c
│ │ ├── stm32f10x_bkp.c
│ │ ├── stm32f10x_can.c
│ │ ├── stm32f10x_cec.c
│ │ ├── stm32f10x_crc.c
│ │ ├── stm32f10x_dac.c
│ │ ├── stm32f10x_dbgmcu.c
│ │ ├── stm32f10x_dma.c
│ │ ├── stm32f10x_exti.c
│ │ ├── stm32f10x_flash.c
│ │ ├── stm32f10x_fsmc.c
│ │ ├── stm32f10x_gpio.c
│ │ ├── stm32f10x_i2c.c
│ │ ├── stm32f10x_iwdg.c
│ │ ├── stm32f10x_pwr.c
│ │ ├── stm32f10x_rcc.c
│ │ ├── stm32f10x_rtc.c
│ │ ├── stm32f10x_sdio.c
│ │ ├── stm32f10x_spi.c
│ │ ├── stm32f10x_tim.c
│ │ ├── stm32f10x_usart.c
│ │ └── stm32f10x_wwdg.c
│ └── project
│ └── LED灯的闪烁
│ ├── delay.c
│ ├── delay.h
│ ├── EVARM
│ │ ├── Backup of LED灯的闪烁.ewd
│ │ ├── Backup of LED灯的闪烁.ewp
│ │ ├── LED灯的闪烁CustomSfr.sfr
│ │ ├── LED灯的闪烁.dep
│ │ ├── LED灯的闪烁.ewd
│ │ ├── LED灯的闪烁.ewp
│ │ ├── LED灯的闪烁.eww
│ │ ├── settings
│ │ │ ├── LED灯的闪烁.cspy.bat
│ │ │ ├── LED灯的闪烁.dbgdt
│ │ │ ├── LED灯的闪烁_Debug.jlink
│ │ │ ├── LED灯的闪烁.dni
│ │ │ ├── LED灯的闪烁.wsdt
│ │ │ └── LED灯的闪烁.wspos
│ │ ├── stm32f10x_flash_extsram.icf
│ │ ├── stm32f10x_flash.icf
│ │ ├── stm32f10x_nor.icf
│ │ └── stm32f10x_ram.icf
│ ├── main.c
│ ├── nfc.c
│ ├── nfc.h
│ ├── stm32f10x_conf.h
│ ├── stm32f10x_it.c
│ └── stm32f10x_it.h
├── 科星107开发板资料2
│ ├── app_devices
│ │ ├── ascii.h
│ │ ├── can.c
│ │ ├── can.h
│ │ ├── exit_int.c
│ │ ├── exit_int.h
│ │ ├── fonts.c
│ │ ├── fonts.h
│ │ ├── gpio.c
│ │ ├── gpio.h
│ │ ├── ili9320.c
│ │ ├── ili9320.h
│ │ ├── pic.h
│ │ ├── stm3210c_eval.c
│ │ ├── stm3210c_eval.h
│ │ ├── stm3210c_eval_ioe.c
│ │ ├── stm3210c_eval_ioe.h
│ │ ├── stm3210c_eval_lcd.c
│ │ ├── stm3210c_eval_lcd.h
│ │ ├── stm32_eval_i2c_ee.c
│ │ ├── stm32_eval_i2c_tsensor.c
│ │ ├── stm32_eval_i2c_tsensor.h
│ │ ├── stm32_eval_sdio_sd.c
│ │ ├── stm32_eval_sdio_sd.h
│ │ ├── stm32_eval_spi_flash.c
│ │ ├── stm32_eval_spi_flash.h
│ │ ├── stm32_eval_spi_sd.c
│ │ ├── stm32_eval_spi_sd.h
│ │ ├── stm32_i2c_ee.h
│ │ ├── timer.c
│ │ ├── timer.h
│ │ ├── uart.c
│ │ └── uart.h
│ └── Libraries
│ ├── CMSIS
│ │ ├── CM3
│ │ │ ├── CoreSupport
│ │ │ │ ├── core_cm3.c
│ │ │ │ └── core_cm3.h
│ │ │ └── DeviceSupport
│ │ │ └── ST
│ │ │ └── STM32F10x
│ │ │ ├── Release_Notes.html
│ │ │ ├── startup
│ │ │ │ ├── arm
│ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ ├── gcc_ride7
│ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ ├── iar
│ │ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ │ └── TrueSTUDIO
│ │ │ │ ├── startup_stm32f10x_cl.s
│ │ │ │ ├── startup_stm32f10x_hd.s
│ │ │ │ ├── startup_stm32f10x_hd_vl.s
│ │ │ │ ├── startup_stm32f10x_ld.s
│ │ │ │ ├── startup_stm32f10x_ld_vl.s
│ │ │ │ ├── startup_stm32f10x_md.s
│ │ │ │ ├── startup_stm32f10x_md_vl.s
│ │ │ │ └── startup_stm32f10x_xl.s
│ │ │ ├── stm32f10x.h
│ │ │ ├── system_stm32f10x.c
│ │ │ └── system_stm32f10x.h
│ │ ├── CMSIS_changes.htm
│ │ ├── CMSIS debug support.htm
│ │ ├── Documentation
│ │ │ └── CMSIS_Core.htm
│ │ └── License.doc
│ └── STM32F10x_StdPeriph_Driver
│ ├── inc
│ │ ├── misc.h
│ │ ├── stm32f10x_adc.h
│ │ ├── stm32f10x_bkp.h
│ │ ├── stm32f10x_can.h
│ │ ├── stm32f10x_cec.h
│ │ ├── stm32f10x_crc.h
│ │ ├── stm32f10x_dac.h
│ │ ├── stm32f10x_dbgmcu.h
│ │ ├── stm32f10x_dma.h
│ │ ├── stm32f10x_exti.h
│ │ ├── stm32f10x_flash.h
│ │ ├── stm32f10x_fsmc.h
│ │ ├── stm32f10x_gpio.h
│ │ ├── stm32f10x_i2c.h
│ │ ├── stm32f10x_iwdg.h
│ │ ├── stm32f10x_pwr.h
│ │ ├── stm32f10x_rcc.h
│ │ ├── stm32f10x_rtc.h
│ │ ├── stm32f10x_sdio.h
│ │ ├── stm32f10x_spi.h
│ │ ├── stm32f10x_tim.h
│ │ ├── stm32f10x_usart.h
│ │ └── stm32f10x_wwdg.h
│ ├── Release_Notes.html
│ └── src
│ ├── misc.c
│ ├── stm32f10x_adc.c
│ ├── stm32f10x_bkp.c
│ ├── stm32f10x_can.c
│ ├── stm32f10x_cec.c
│ ├── stm32f10x_crc.c
│ ├── stm32f10x_dac.c
│ ├── stm32f10x_dbgmcu.c
│ ├── stm32f10x_dma.c
│ ├── stm32f10x_exti.c
│ ├── stm32f10x_flash.c
│ ├── stm32f10x_fsmc.c
│ ├── stm32f10x_gpio.c
│ ├── stm32f10x_i2c.c
│ ├── stm32f10x_iwdg.c
│ ├── stm32f10x_pwr.c
│ ├── stm32f10x_rcc.c
│ ├── stm32f10x_rtc.c
│ ├── stm32f10x_sdio.c
│ ├── stm32f10x_spi.c
│ ├── stm32f10x_tim.c
│ ├── stm32f10x_usart.c
│ └── stm32f10x_wwdg.c
└── 科星F107开发板源码公共文件.zip
140 directories, 564 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论