在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例嵌入式开发 → STM32F103的USB 虚拟3个VCP端口

STM32F103的USB 虚拟3个VCP端口

嵌入式开发

下载此实例
  • 开发语言:C/C++
  • 实例大小:38.52M
  • 下载次数:3
  • 浏览次数:20
  • 发布时间:2023-12-21
  • 实例类别:嵌入式开发
  • 发 布 人:ababzx2199
  • 文件格式:.zip
  • 所需积分:2

实例介绍

【实例简介】STM32F103的USB 虚拟3个VCP端口

1、最新STM32标准固件库,最新标准USB固件库

2、USB虚拟3个VCP端口,可同时收发,亲测稳定


【实例截图】

from clipboard
【核心代码】
.
├── EM9000EM9000三VCP成功
│   ├── ADC_User
│   │   ├── INC
│   │   │   └── ADC_User.h
│   │   └── SRC
│   │       └── ADC_User.c
│   ├── CRC
│   │   ├── INC
│   │   │   └── CRC_User.h
│   │   └── SRC
│   │       └── CRC_User.c
│   ├── Doc
│   │   ├── readme.txt
│   │   └── 安富莱_STM32-V6开发板_FreeRTOS教程(V1.0).pdf
│   ├── FreeRTOS
│   │   ├── MALLOC
│   │   │   ├── INC
│   │   │   │   └── malloc.h
│   │   │   └── SRC
│   │   │       └── malloc.c
│   │   ├── MemMang
│   │   │   ├── heap_1.c
│   │   │   ├── heap_2.c
│   │   │   ├── heap_3.c
│   │   │   ├── heap_4.c
│   │   │   └── heap_5.c
│   │   ├── Ports
│   │   │   ├── INC
│   │   │   │   └── portmacro.h
│   │   │   └── SRC
│   │   │       └── port.c
│   │   └── Source
│   │       ├── INC
│   │       │   ├── FreeRTOS.h
│   │       │   ├── StackMacros.h
│   │       │   ├── atomic.h
│   │       │   ├── croutine.h
│   │       │   ├── deprecated_definitions.h
│   │       │   ├── event_groups.h
│   │       │   ├── list.h
│   │       │   ├── message_buffer.h
│   │       │   ├── mpu_prototypes.h
│   │       │   ├── mpu_wrappers.h
│   │       │   ├── portable.h
│   │       │   ├── projdefs.h
│   │       │   ├── queue.h
│   │       │   ├── semphr.h
│   │       │   ├── stack_macros.h
│   │       │   ├── stdint.readme
│   │       │   ├── stream_buffer.h
│   │       │   ├── task.h
│   │       │   └── timers.h
│   │       └── SRC
│   │           ├── croutine.c
│   │           ├── event_groups.c
│   │           ├── lexicon.txt
│   │           ├── list.c
│   │           ├── queue.c
│   │           ├── stream_buffer.c
│   │           ├── tasks.c
│   │           └── timers.c
│   ├── Project
│   │   ├── EM9000_FreeRTOS.uvgui.ababz
│   │   ├── EM9000_FreeRTOS.uvgui.uml
│   │   ├── EM9000_FreeRTOS.uvopt
│   │   ├── EM9000_FreeRTOS.uvproj
│   │   ├── EventRecorderStub.scvd
│   │   ├── JLinkLog.txt
│   │   ├── JLinkSettings.ini
│   │   ├── Listing
│   │   │   ├── DataCollection_FreeRTOS.map
│   │   │   ├── DataCollection_Program.map
│   │   │   ├── startup_stm32f10x_cl.lst
│   │   │   └── startup_stm32f10x_hd.lst
│   │   ├── Object
│   │   │   ├── DataCollection_FreeRTOS.axf
│   │   │   ├── DataCollection_FreeRTOS.build_log.htm
│   │   │   ├── DataCollection_FreeRTOS.fed
│   │   │   ├── DataCollection_FreeRTOS.htm
│   │   │   ├── DataCollection_FreeRTOS.l2p
│   │   │   ├── DataCollection_FreeRTOS.lnp
│   │   │   ├── DataCollection_FreeRTOS.sct
│   │   │   ├── DataCollection_FreeRTOS_Boot.dep
│   │   │   ├── DataCollection_FreeRTOS_NoBoot.dep
│   │   │   ├── DataCollection_FreeRTOS_sct.Bak
│   │   │   ├── DataCollection_NoBoot.dep
│   │   │   ├── DataCollection_Program.axf
│   │   │   ├── DataCollection_Program.build_log.htm
│   │   │   ├── DataCollection_Program.hex
│   │   │   ├── DataCollection_Program.htm
│   │   │   ├── DataCollection_Program.lnp
│   │   │   ├── DataCollection_Program.plg
│   │   │   ├── DataCollection_Program.sct
│   │   │   ├── DataCollection_Program_sct.Bak
│   │   │   ├── EM9000_FreeRTOS_NoBoot.dep
│   │   │   ├── ExtDll.iex
│   │   │   ├── adc_user._2i
│   │   │   ├── adc_user.crf
│   │   │   ├── adc_user.d
│   │   │   ├── adc_user.o
│   │   │   ├── collectiondatadeal._2i
│   │   │   ├── collectiondatadeal.crf
│   │   │   ├── collectiondatadeal.d
│   │   │   ├── collectiondatadeal.o
│   │   │   ├── collectiondataread._2i
│   │   │   ├── collectiondataread.crf
│   │   │   ├── collectiondataread.d
│   │   │   ├── collectiondataread.o
│   │   │   ├── collectiondatawrite._2i
│   │   │   ├── collectiondatawrite.crf
│   │   │   ├── collectiondatawrite.d
│   │   │   ├── collectiondatawrite.o
│   │   │   ├── communicationprocessing_user._2i
│   │   │   ├── communicationprocessing_user.crf
│   │   │   ├── communicationprocessing_user.d
│   │   │   ├── communicationprocessing_user.o
│   │   │   ├── crc_user._2i
│   │   │   ├── crc_user.crf
│   │   │   ├── crc_user.d
│   │   │   ├── crc_user.o
│   │   │   ├── croutine.crf
│   │   │   ├── croutine.d
│   │   │   ├── croutine.o
│   │   │   ├── dataclient._2i
│   │   │   ├── dataclient.crf
│   │   │   ├── dataclient.d
│   │   │   ├── dataclient.o
│   │   │   ├── dataserver._2i
│   │   │   ├── dataserver.crf
│   │   │   ├── dataserver.d
│   │   │   ├── dataserver.o
│   │   │   ├── delay_user._2i
│   │   │   ├── delay_user.crf
│   │   │   ├── delay_user.d
│   │   │   ├── delay_user.o
│   │   │   ├── dhcpc._2i
│   │   │   ├── dhcpc.crf
│   │   │   ├── dhcpc.d
│   │   │   ├── dhcpc.o
│   │   │   ├── encryption_user._2i
│   │   │   ├── encryption_user.crf
│   │   │   ├── encryption_user.d
│   │   │   ├── encryption_user.o
│   │   │   ├── eth_hardware._2i
│   │   │   ├── eth_hardware.crf
│   │   │   ├── eth_hardware.d
│   │   │   ├── eth_hardware.o
│   │   │   ├── event_groups._2i
│   │   │   ├── event_groups.crf
│   │   │   ├── event_groups.d
│   │   │   ├── event_groups.o
│   │   │   ├── flash_user._2i
│   │   │   ├── flash_user.crf
│   │   │   ├── flash_user.d
│   │   │   ├── flash_user.o
│   │   │   ├── gpio_user._2i
│   │   │   ├── gpio_user.crf
│   │   │   ├── gpio_user.d
│   │   │   ├── gpio_user.o
│   │   │   ├── hardware_user._2i
│   │   │   ├── hardware_user.crf
│   │   │   ├── hardware_user.d
│   │   │   ├── hardware_user.o
│   │   │   ├── heap_4._2i
│   │   │   ├── heap_4.crf
│   │   │   ├── heap_4.d
│   │   │   ├── heap_4.o
│   │   │   ├── http.crf
│   │   │   ├── http.d
│   │   │   ├── http.o
│   │   │   ├── hw_config.crf
│   │   │   ├── hw_config.d
│   │   │   ├── hw_config.o
│   │   │   ├── lcdorled_user._2i
│   │   │   ├── lcdorled_user.crf
│   │   │   ├── lcdorled_user.d
│   │   │   ├── lcdorled_user.o
│   │   │   ├── list.crf
│   │   │   ├── list.d
│   │   │   ├── list.o
│   │   │   ├── lpt_user._2i
│   │   │   ├── lpt_user.crf
│   │   │   ├── lpt_user.d
│   │   │   ├── lpt_user.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── manufacturer_user._2i
│   │   │   ├── manufacturer_user.crf
│   │   │   ├── manufacturer_user.d
│   │   │   ├── manufacturer_user.o
│   │   │   ├── misc._2i
│   │   │   ├── misc.crf
│   │   │   ├── misc.d
│   │   │   ├── misc.o
│   │   │   ├── nvic_user._2i
│   │   │   ├── nvic_user.crf
│   │   │   ├── nvic_user.d
│   │   │   ├── nvic_user.o
│   │   │   ├── parameter_user._2i
│   │   │   ├── parameter_user.crf
│   │   │   ├── parameter_user.d
│   │   │   ├── parameter_user.o
│   │   │   ├── port._2i
│   │   │   ├── port.crf
│   │   │   ├── port.d
│   │   │   ├── port.o
│   │   │   ├── queue._2i
│   │   │   ├── queue.crf
│   │   │   ├── queue.d
│   │   │   ├── queue.o
│   │   │   ├── resolv._2i
│   │   │   ├── resolv.crf
│   │   │   ├── resolv.d
│   │   │   ├── resolv.o
│   │   │   ├── rtc_user._2i
│   │   │   ├── rtc_user.crf
│   │   │   ├── rtc_user.d
│   │   │   ├── rtc_user.o
│   │   │   ├── startup_stm32f10x_cl.d
│   │   │   ├── startup_stm32f10x_cl.o
│   │   │   ├── startup_stm32f10x_hd.d
│   │   │   ├── startup_stm32f10x_hd.o
│   │   │   ├── stm32_eth._2i
│   │   │   ├── stm32_eth.crf
│   │   │   ├── stm32_eth.d
│   │   │   ├── stm32_eth.o
│   │   │   ├── stm32f10x_adc._2i
│   │   │   ├── stm32f10x_adc.crf
│   │   │   ├── stm32f10x_adc.d
│   │   │   ├── stm32f10x_adc.o
│   │   │   ├── stm32f10x_bkp._2i
│   │   │   ├── stm32f10x_bkp.crf
│   │   │   ├── stm32f10x_bkp.d
│   │   │   ├── stm32f10x_bkp.o
│   │   │   ├── stm32f10x_crc._2i
│   │   │   ├── stm32f10x_crc.crf
│   │   │   ├── stm32f10x_crc.d
│   │   │   ├── stm32f10x_crc.o
│   │   │   ├── stm32f10x_dac._2i
│   │   │   ├── stm32f10x_dac.crf
│   │   │   ├── stm32f10x_dac.d
│   │   │   ├── stm32f10x_dac.o
│   │   │   ├── stm32f10x_dma._2i
│   │   │   ├── stm32f10x_dma.crf
│   │   │   ├── stm32f10x_dma.d
│   │   │   ├── stm32f10x_dma.o
│   │   │   ├── stm32f10x_exti._2i
│   │   │   ├── stm32f10x_exti.crf
│   │   │   ├── stm32f10x_exti.d
│   │   │   ├── stm32f10x_exti.o
│   │   │   ├── stm32f10x_flash._2i
│   │   │   ├── stm32f10x_flash.crf
│   │   │   ├── stm32f10x_flash.d
│   │   │   ├── stm32f10x_flash.o
│   │   │   ├── stm32f10x_gpio._2i
│   │   │   ├── stm32f10x_gpio.crf
│   │   │   ├── stm32f10x_gpio.d
│   │   │   ├── stm32f10x_gpio.o
│   │   │   ├── stm32f10x_it._2i
│   │   │   ├── stm32f10x_it.crf
│   │   │   ├── stm32f10x_it.d
│   │   │   ├── stm32f10x_it.o
│   │   │   ├── stm32f10x_iwdg._2i
│   │   │   ├── stm32f10x_iwdg.crf
│   │   │   ├── stm32f10x_iwdg.d
│   │   │   ├── stm32f10x_iwdg.o
│   │   │   ├── stm32f10x_pwr._2i
│   │   │   ├── stm32f10x_pwr.crf
│   │   │   ├── stm32f10x_pwr.d
│   │   │   ├── stm32f10x_pwr.o
│   │   │   ├── stm32f10x_rcc._2i
│   │   │   ├── stm32f10x_rcc.crf
│   │   │   ├── stm32f10x_rcc.d
│   │   │   ├── stm32f10x_rcc.o
│   │   │   ├── stm32f10x_sdio._2i
│   │   │   ├── stm32f10x_sdio.crf
│   │   │   ├── stm32f10x_sdio.d
│   │   │   ├── stm32f10x_sdio.o
│   │   │   ├── stm32f10x_spi._2i
│   │   │   ├── stm32f10x_spi.crf
│   │   │   ├── stm32f10x_spi.d
│   │   │   ├── stm32f10x_spi.o
│   │   │   ├── stm32f10x_tim._2i
│   │   │   ├── stm32f10x_tim.crf
│   │   │   ├── stm32f10x_tim.d
│   │   │   ├── stm32f10x_tim.o
│   │   │   ├── stm32f10x_usart._2i
│   │   │   ├── stm32f10x_usart.crf
│   │   │   ├── stm32f10x_usart.d
│   │   │   ├── stm32f10x_usart.o
│   │   │   ├── stm32f10x_wwdg._2i
│   │   │   ├── stm32f10x_wwdg.crf
│   │   │   ├── stm32f10x_wwdg.d
│   │   │   ├── stm32f10x_wwdg.o
│   │   │   ├── system_stm32f10x._2i
│   │   │   ├── system_stm32f10x.crf
│   │   │   ├── system_stm32f10x.d
│   │   │   ├── system_stm32f10x.o
│   │   │   ├── taskrunning_user._2i
│   │   │   ├── taskrunning_user.crf
│   │   │   ├── taskrunning_user.d
│   │   │   ├── taskrunning_user.o
│   │   │   ├── tasks._2i
│   │   │   ├── tasks.crf
│   │   │   ├── tasks.d
│   │   │   ├── tasks.o
│   │   │   ├── terminaltoservercommunication_user._2i
│   │   │   ├── terminaltoservercommunication_user.crf
│   │   │   ├── terminaltoservercommunication_user.d
│   │   │   ├── terminaltoservercommunication_user.o
│   │   │   ├── testfunction_user.crf
│   │   │   ├── testfunction_user.d
│   │   │   ├── testfunction_user.o
│   │   │   ├── timer_user._2i
│   │   │   ├── timer_user.crf
│   │   │   ├── timer_user.d
│   │   │   ├── timer_user.o
│   │   │   ├── timers.crf
│   │   │   ├── timers.d
│   │   │   ├── timers.o
│   │   │   ├── uip._2i
│   │   │   ├── uip.crf
│   │   │   ├── uip.d
│   │   │   ├── uip.o
│   │   │   ├── uip_arp._2i
│   │   │   ├── uip_arp.crf
│   │   │   ├── uip_arp.d
│   │   │   ├── uip_arp.o
│   │   │   ├── uip_timer.crf
│   │   │   ├── uip_timer.d
│   │   │   ├── uip_timer.o
│   │   │   ├── uipmain._2i
│   │   │   ├── uipmain.crf
│   │   │   ├── uipmain.d
│   │   │   ├── uipmain.o
│   │   │   ├── upgrade_user._2i
│   │   │   ├── upgrade_user.crf
│   │   │   ├── upgrade_user.d
│   │   │   ├── upgrade_user.o
│   │   │   ├── usart_user._2i
│   │   │   ├── usart_user.crf
│   │   │   ├── usart_user.d
│   │   │   ├── usart_user.o
│   │   │   ├── usb_core.crf
│   │   │   ├── usb_core.d
│   │   │   ├── usb_core.o
│   │   │   ├── usb_desc.crf
│   │   │   ├── usb_desc.d
│   │   │   ├── usb_desc.o
│   │   │   ├── usb_endp.crf
│   │   │   ├── usb_endp.d
│   │   │   ├── usb_endp.o
│   │   │   ├── usb_init.crf
│   │   │   ├── usb_init.d
│   │   │   ├── usb_init.o
│   │   │   ├── usb_int.crf
│   │   │   ├── usb_int.d
│   │   │   ├── usb_int.o
│   │   │   ├── usb_istr.crf
│   │   │   ├── usb_istr.d
│   │   │   ├── usb_istr.o
│   │   │   ├── usb_mem.crf
│   │   │   ├── usb_mem.d
│   │   │   ├── usb_mem.o
│   │   │   ├── usb_prop.crf
│   │   │   ├── usb_prop.d
│   │   │   ├── usb_prop.o
│   │   │   ├── usb_pwr.crf
│   │   │   ├── usb_pwr.d
│   │   │   ├── usb_pwr.o
│   │   │   ├── usb_regs.crf
│   │   │   ├── usb_regs.d
│   │   │   ├── usb_regs.o
│   │   │   ├── usb_sil.crf
│   │   │   ├── usb_sil.d
│   │   │   ├── usb_sil.o
│   │   │   ├── usb_user.crf
│   │   │   ├── usb_user.d
│   │   │   ├── usb_user.o
│   │   │   ├── virtualcomport.crf
│   │   │   ├── virtualcomport.d
│   │   │   └── virtualcomport.o
│   │   └── bin
│   │       ├── Boot
│   │       │   └── DataCollection_Program.bin
│   │       └── NoBoot
│   │           └── DataCollection_FreeRTOS.bin
│   ├── STM32Fxxx_Libreary
│   │   ├── CMSIS
│   │   │   ├── INC
│   │   │   │   ├── stm32f10x.h
│   │   │   │   └── system_stm32f10x.h
│   │   │   └── SRC
│   │   │       └── system_stm32f10x.c
│   │   ├── ISR
│   │   │   ├── INC
│   │   │   │   └── stm32f10x_it.h
│   │   │   └── SRC
│   │   │       ├── stm32f1011x_it.c
│   │   │       └── stm32f10x_it.c
│   │   ├── Starup
│   │   │   ├── startup_stm32f10x_cl.s
│   │   │   ├── startup_stm32f10x_hd.s
│   │   │   ├── startup_stm32f10x_hd.s.txt
│   │   │   ├── startup_stm32f10x_hd_vl.s
│   │   │   ├── startup_stm32f10x_ld.s
│   │   │   ├── startup_stm32f10x_ld_vl.s
│   │   │   ├── startup_stm32f10x_md.s
│   │   │   ├── startup_stm32f10x_md.s.txt
│   │   │   ├── startup_stm32f10x_md_vl.s
│   │   │   └── startup_stm32f10x_xl.s
│   │   ├── Stdperiph_Drive
│   │   │   ├── INC
│   │   │   │   ├── misc.h
│   │   │   │   ├── stm32f10x_adc.h
│   │   │   │   ├── stm32f10x_bkp.h
│   │   │   │   ├── stm32f10x_can.h
│   │   │   │   ├── stm32f10x_cec.h
│   │   │   │   ├── stm32f10x_conf.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_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
│   │   └── USB_Drive
│   │       ├── 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
│   ├── USB_User
│   │   ├── INC
│   │   │   ├── USB_User.h
│   │   │   ├── hw_config.h
│   │   │   ├── platform_config.h
│   │   │   ├── usb_conf.h
│   │   │   ├── usb_desc.h
│   │   │   ├── usb_istr.h
│   │   │   ├── usb_prop.h
│   │   │   └── usb_pwr.h
│   │   └── SRC
│   │       ├── USB_User.c
│   │       ├── hw_config.c
│   │       ├── usb_desc.c
│   │       ├── usb_endp.c
│   │       ├── usb_istr.c
│   │       ├── usb_prop.c
│   │       └── usb_pwr.c
│   ├── Upgrading
│   │   ├── INC
│   │   │   └── Upgrade_User.h
│   │   └── SRC
│   │       └── UpGrade_User.c
│   └── User
│       ├── INC
│       │   ├── CommunicationProcessing_User.h
│       │   ├── DELAY_User.h
│       │   ├── Flash_User.h
│       │   ├── FreeRTOSConfig.h
│       │   ├── GPIO_User.h
│       │   ├── HardWare_User.h
│       │   ├── NVIC_User.h
│       │   ├── TaskRunning_User.h
│       │   ├── TerminalToServerCommunication_User.h
│       │   ├── TestFunction_User.h
│       │   ├── Timer_User.h
│       │   ├── USART_User.h
│       │   └── main.h
│       └── SRC
│           ├── CommunicationProcessing_User.c
│           ├── DELAY_User.c
│           ├── Encryption_User.c
│           ├── Flash_User.c
│           ├── GPIO_User.c
│           ├── HardWare_User.c
│           ├── NVIC_User.c
│           ├── TaskRunning_User.c
│           ├── TerminalToServerCommunication_User.c
│           ├── TestFunction_User.c
│           ├── Timer_User.c
│           ├── USART_User.c
│           └── main.c
└── STM32F103的USB 虚拟3个VCP端口_EM9000EM9000三VCP成功.zip

48 directories, 485 files


实例下载地址

STM32F103的USB 虚拟3个VCP端口

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警