2021-08-24 17:36:23 索煒達(dá)電子 881
項(xiàng)目編號(hào):E596
文件大?。?4M
源碼說(shuō)明:帶中文注釋
開(kāi)發(fā)環(huán)境:C編譯器
簡(jiǎn)要概述:
基于STM32開(kāi)發(fā)的NFC的WiFi傳輸源碼
目錄│文件列表:
└ NFC-WiFi
│ readme.txt
├ inc
│ │ common.h
│ │ main.h
│ │ rsi_app_util.h
│ │ rsi_config.h
│ │ rsi_global.h
│ │ rsi_hal.h
│ │ rsi_lib_util.h
│ │ rsi_spi_api.h
│ │ sdio_sdcard.h
│ │ spi.h
│ │ stm32f10x_conf.h
│ │ stm32f10x_it.h
│ │ SysTick.h
│ │ tflashcard.h
│ │ usart.h
│ └ wifi_global.h
├ Libraries
│ ├ CMSIS
│ │ └ Core
│ │ ├ CM3
│ │ │ │ core_cm3.c
│ │ │ │ core_cm3.h
│ │ │ │ stm32f10x.h
│ │ │ │ system_stm32f10x.c
│ │ │ │ system_stm32f10x.h
│ │ │ └ startup
│ │ │ ├ arm
│ │ │ │ │ startup_stm32f10x_hd.s
│ │ │ │ │ startup_stm32f10x_ld.s
│ │ │ │ └ startup_stm32f10x_md.s
│ │ │ ├ gcc
│ │ │ │ │ startup_stm32f10x_hd.c
│ │ │ │ │ startup_stm32f10x_ld.c
│ │ │ │ └ startup_stm32f10x_md.c
│ │ │ └ iar
│ │ │ │ startup_stm32f10x_hd.s
│ │ │ │ startup_stm32f10x_ld.s
│ │ │ └ startup_stm32f10x_md.s
│ │ └ Documentation
│ │ └ CMSIS_Core.htm
│ ├ FFS
│ │ │ 00readme.txt
│ │ │ diskio.c
│ │ │ diskio.h
│ │ │ ff.c
│ │ │ ff.h
│ │ │ ffconf.h
│ │ └ integer.h
│ │ └ option
│ │ │ cc932.c
│ │ │ cc936.c
│ │ │ cc949.c
│ │ │ cc950.c
│ │ │ ccsbcs.c
│ │ └ syscall.c
│ ├ NFC-stack
│ │ ├ HSU
│ │ │ │ HSU.cpp
│ │ │ └ HSU.h
│ │ ├ llcp
│ │ │ │ llcp.cpp
│ │ │ └ llcp.h
│ │ ├ maclink
│ │ │ │ mac_link.cpp
│ │ │ └ mac_link.h
│ │ ├ ndef
│ │ │ │ NdefMessage.cpp
│ │ │ │ NdefMessage.h
│ │ │ │ NdefRecord.cpp
│ │ │ └ NdefRecord.h
│ │ ├ pn532
│ │ │ │ PN532.cpp
│ │ │ └ PN532.h
│ │ ├ PN532_HSU
│ │ │ │ PN532Interface.h
│ │ │ │ PN532_HSU.cpp
│ │ │ └ PN532_HSU.h
│ │ └ snep
│ │ │ snep.cpp
│ │ └ snep.h
│ ├ STM32F10x_StdPeriph_Driver
│ │ ├ inc
│ │ │ │ misc.h
│ │ │ │ stm32f10x_adc.h
│ │ │ │ stm32f10x_bkp.h
│ │ │ │ stm32f10x_can.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
│ │ └ src
│ │ │ misc.c
│ │ │ stm32f10x_adc.c
│ │ │ stm32f10x_bkp.c
│ │ │ stm32f10x_can.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
│ └ Wifi_API_Lib
│ │ rsi_api_sysinit.c
│ │ rsi_app_util.c
│ │ rsi_config_init.c
│ │ rsi_hal_mcu_interrupt.c
│ │ rsi_hal_mcu_ioports.c
│ │ rsi_hal_mcu_spi.c
│ │ rsi_hal_mcu_timers.c
│ │ rsi_interrupt.c
│ │ rsi_lib_util.c
│ │ rsi_spi_api.c
│ │ rsi_spi_band.c
│ │ rsi_spi_bootloader.c
│ │ rsi_spi_disconnect.c
│ │ rsi_spi_execute_cmd.c
│ │ rsi_spi_feat_select.c
│ │ rsi_spi_framerdwr.c
│ │ rsi_spi_functs.c
│ │ rsi_spi_fwupgrade.c
│ │ rsi_spi_http_get.c
│ │ rsi_spi_http_post.c
│ │ rsi_spi_iface_init.c
│ │ rsi_spi_init.c
│ │ rsi_spi_interrupt_handler.c
│ │ rsi_spi_ipparam.c
│ │ rsi_spi_join.c
│ │ rsi_spi_memrdwr.c
│ │ rsi_spi_mode_select.c
│ │ rsi_spi_power_mode.c
│ │ rsi_spi_query_bssid_nwtype.c
│ │ rsi_spi_query_conn_status.c
│ │ rsi_spi_query_dhcp_parms.c
│ │ rsi_spi_query_dns.c
│ │ rsi_spi_query_fwversion.c
│ │ rsi_spi_query_macaddress.c
│ │ rsi_spi_query_net_parms.c
│ │ rsi_spi_query_rssi.c
│ │ rsi_spi_read_packet.c
│ │ rsi_spi_regrdwr.c
│ │ rsi_spi_scan.c
│ │ rsi_spi_send_data.c
│ │ rsi_spi_send_ludp_data.c
│ │ rsi_spi_send_wps_data.c
│ │ rsi_spi_set_listen_interval.c
│ │ rsi_spi_set_mac_addr.c
│ │ rsi_spi_sleep_timer.c
│ │ rsi_spi_socket.c
│ │ rsi_spi_socket_close.c
│ │ rsi_spi_store_config.c
│ │ rsi_spi_wepkeys.c
│ │ rsi_spi_wlfw_upgrade.c
│ └ rsi_spi_wl_bootloader.c
├ RVMDK
│ │ HAL.cpp
│ │ HAL.h
│ │ JLink Regs CM3.txt
│ │ JLinkLog.txt
│ │ JLinkSettings.ini
│ │ SpeexVocoder_STM32F103-STK.uvgui.Administrator
│ │ SpeexVocoder_STM32F103-STK.uvgui_Administrator.bak
│ │ SpeexVocoder_STM32F103-STK.uvopt
│ │ SpeexVocoder_STM32F103-STK.uvproj
│ │ SpeexVocoder_STM32F103-STK_SpeexVocoder_STM32F103-STK.dep
│ │ SpeexVocoder_STM32F103-STK_STM32F103WIFI-STK.dep
│ │ SpeexVocoder_STM32F103-STK_uvopt.bak
│ │ SpeexVocoder_STM32F103-STK_uvproj.bak
│ │ spi_init.c
│ │ sys.c
│ │ sys.h
│ │ TFfiles.c
│ │ TFfiles.h
│ ├ Firmware
│ │ │ ffdata
│ │ │ ffinst1
│ │ │ ffinst2
│ │ │ iudata
│ │ │ iuinst1
│ │ │ iuinst2
│ │ │ sbdata1
│ │ │ sbdata2
│ │ │ sbinst1
│ │ └ sbinst2
│ ├ List
│ │ │ SpeexVocoder_STM32F103-STK.map
│ │ │ startup_stm32f10x_hd.lst
│ │ └ STM32_Speex_TX.map
│ └ obj
│ │ bits.crf
│ │ bits.d
│ │ bits.o
│ │ buffer.crf
│ │ buffer.d
│ │ buffer.o
│ │ cb_search.crf
│ │ cb_search.d
│ │ cb_search.o
│ │ cc936.crf
│ │ cc936.d
│ │ cc936.o
│ │ cc936.__i
│ │ core_cm3.crf
│ │ core_cm3.d
│ │ core_cm3.o
│ │ core_cm3.__i
│ │ diskio.crf
│ │ diskio.d
│ │ diskio.o
│ │ diskio.__i
│ │ exc_10_32_table.crf
│ │ exc_10_32_table.d
│ │ exc_10_32_table.o
│ │ ExtDll.iex
│ │ ff.crf
│ │ ff.d
│ │ ff.o
│ │ ff.__i
│ │ filters.crf
│ │ filters.d
│ │ filters.o
│ │ gain_table_lbr.crf
│ │ gain_table_lbr.d
│ │ gain_table_lbr.o
│ │ hal.crf
│ │ hal.d
│ │ hal.o
│ │ hal.__i
│ │ hal_init.crf
│ │ hal_init.d
│ │ high_lsp_tables.crf
│ │ high_lsp_tables.d
│ │ high_lsp_tables.o
│ │ hsu.crf
│ │ hsu.d
│ │ hsu.o
│ │ hsu.__i
│ │ init_wifi_module.crf
│ │ init_wifi_module.d
│ │ lcd.crf
│ │ lcd.d
│ │ lcd.o
│ │ llcp.crf
│ │ llcp.d
│ │ llcp.o
│ │ llcp.__i
│ │ lpc.crf
│ │ lpc.d
│ │ lpc.o
│ │ lsp.crf
│ │ lsp.d
│ │ lsp.o
│ │ lsp_tables_nb.crf
│ │ lsp_tables_nb.d
│ │ lsp_tables_nb.o
│ │ ltp.crf
│ │ ltp.d
│ │ ltp.o
│ │ mac_link.crf
│ │ mac_link.d
│ │ mac_link.o
│ │ mac_link.__i
│ │ main.crf
│ │ main.d
│ │ main.o
│ │ main.__i
│ │ microsdcard.crf
│ │ microsdcard.d
│ │ microsdcard.o
│ │ misc.crf
│ │ misc.d
│ │ misc.o
│ │ modes.crf
│ │ modes.d
│ │ modes.o
│ │ nb_celp.crf
│ │ nb_celp.d
│ │ nb_celp.o
│ │ ndefmessage.crf
│ │ ndefmessage.d
│ │ ndefmessage.o
│ │ ndefmessage.__i
│ │ ndefrecord.crf
│ │ ndefrecord.d
│ │ ndefrecord.o
│ │ ndefrecord.__i
│ │ pn532.crf
│ │ pn532.d
│ │ pn532.o
│ │ pn532.__i
│ │ pn532_hsu.crf