实例介绍
STM32F303RET6官方例程.zip
【实例截图】
【核心代码】
STM32F303RET6官方例程.zip
└── STM32F30x_StdPeriph_Examples
├── ADC
│ ├── ADC_AnalogWatchdog
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── ADC_BasicExample
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── ADC_DifferentialMode
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── ADC_DualMode
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── CAN
│ ├── CAN_DualFIFO
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── CAN_FIFOExtension
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── CAN_LoopBack
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── CAN_Networking
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── COMP
│ ├── COMP_AnalogWatchdog
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── COMP_Hygrometer
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── COMP_LDR
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── COMP_OutputBlanking
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── COMP_PulseWidthMeasurement
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── COMP_PWMSignalControl
│ ├── main.c
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── CortexM4
│ ├── BitBand
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── Mode_Privilege
│ ├── main.c
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── CRC
│ ├── CRC_32BitsCRCMessage
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── CRC_8BitsCRCMessage
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── CRC_TwoBoards
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── DAC
│ ├── DAC_ADC
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── DAC_SignalsGeneration
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── DMA
│ ├── DMA_ADCToTIM3Transfer
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── DMA_FLASHToRAMTransfer
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── DMA_RAMToDACTransfer
│ ├── main.c
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── EXTI
│ └── EXTI_Example
│ ├── main.c
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── FLASH
│ ├── FLASH_Program
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── FLASH_WriteProtection
│ ├── main.c
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── FMC
│ └── FMC_SRAM
│ ├── main.c
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_fmc_sram.c
│ ├── stm32f30x_fmc_sram.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── GPIO
│ └── GPIO_Toggle
│ ├── main.c
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── I2C
│ ├── I2C_EEPROM
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── I2C_TSENSOR
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── I2C_TwoBoards
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_i2c_cpal_conf.h
│ │ ├── stm32f30x_i2c_cpal_usercallback.c
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── I2C_WakeUpFromStop
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_i2c_cpal_conf.h
│ ├── stm32f30x_i2c_cpal_usercallback.c
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── I2S
│ ├── I2S_FullDuplexDataExchangeDMA
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── I2S_FullDuplexDataExchangeIT
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── IWDG
│ ├── IWDG_Reset
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── IWDG_WindowMode
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── Lib_DEBUG
│ └── Lib_DEBUG_Example
│ ├── main.c
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_ip_dbg.c
│ ├── stm32f30x_ip_dbg.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── Library_Examples.html
├── NVIC
│ ├── NVIC_IRQMask
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── NVIC_IRQPriority
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── NVIC_WFIMode
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── OPAMP
│ ├── OPAMP_InternalFollower
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── OPAMP_PGA
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── OPAMP_TimerControlledMux
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── PWR
│ ├── PWR_CurrentConsumption
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ ├── stm32f30x_lp_modes.c
│ │ ├── stm32f30x_lp_modes.h
│ │ └── system_stm32f30x.c
│ ├── PWR_PVD
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── PWR_Standby
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── PWR_Stop
│ ├── main.c
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── RCC
│ └── RCC_Example
│ ├── main.c
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── Release_Notes.html
├── RTC
│ ├── RTC_Calendar
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── RTC_LSI
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── RTC_StopWatch
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── RTC_Tamper
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── RTC_Timer
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── SPI
│ ├── SPI_EEPROM
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── SPI_MSD
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── SPI_TwoBoards
│ ├── SPI_DataExchangeDMA
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── SPI_DataExchangeInterrupt
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── SYSCFG
│ └── SYSCFG_PVDLock
│ ├── main.c
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── SysTick
│ └── SysTick_Example
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── TIM
│ ├── TIM_6Steps
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── TIM_7PWMOutputs
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── TIM_Asymetric
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── TIM_Combined
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── TIM_ComplementarySignals
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── TIM_DMABurst
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── TIM_EncoderMode
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── TIM_InputCapture
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── TIM_OCActive
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── TIM_OCToggle
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── TIM_OnePulse
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── TIM_PWMInput
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── TIM_RetriggreableOPM
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── TIM_Synchronization
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── TIM_TimeBase
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
├── USART
│ ├── USART_AutoBaudRate
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── USART_HyperTerminalInterrupt
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── USART_Printf
│ │ ├── main.c
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ ├── USART_TwoBoards
│ │ ├── USART_DataExchangeDMA
│ │ │ ├── main.c
│ │ │ ├── main.h
│ │ │ ├── readme.txt
│ │ │ ├── stm32f30x_conf.h
│ │ │ ├── stm32f30x_it.c
│ │ │ ├── stm32f30x_it.h
│ │ │ └── system_stm32f30x.c
│ │ └── USART_DataExchangeInterrupt
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── stm32f30x_conf.h
│ │ ├── stm32f30x_it.c
│ │ ├── stm32f30x_it.h
│ │ └── system_stm32f30x.c
│ └── USART_WakeUpFromStop
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── stm32f30x_conf.h
│ ├── stm32f30x_it.c
│ ├── stm32f30x_it.h
│ └── system_stm32f30x.c
└── WWDG
└── WWDG_Example
├── main.c
├── readme.txt
├── stm32f30x_conf.h
├── stm32f30x_it.c
├── stm32f30x_it.h
└── system_stm32f30x.c
111 directories, 547 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论