实例介绍
英飞凌TC26X GPT12模块定时器DEMO 定时器中断,可以直接使用
【实例截图】
【核心代码】
Gpt12Demo
└── Gpt12Demo
├── Configuration.h
├── ConfigurationIsr.h
├── Cpu0_Main.c
├── Cpu0_Main.h
├── cstart.c
├── cstart.h
├── Debug
│ ├── console.log
│ ├── Cpu0_Main.o
│ ├── Cpu0_Main.src
│ ├── cstart.o
│ ├── cstart.src
│ ├── Gpt12Demo.elf
│ ├── Gpt12Demo.mapxml
│ ├── Gpt12Demo.mdf
│ ├── Gpt12Demo.o
│ ├── Gpt12Demo.src
│ ├── makefile
│ ├── PinMapper
│ │ ├── aurix_pin_mappings.o
│ │ ├── aurix_pin_mappings.src
│ │ └── subdir.mk
│ ├── SoftwarePlatform
│ │ ├── Configuration
│ │ │ ├── __framework_init.o
│ │ │ ├── __framework_init.src
│ │ │ └── subdir.mk
│ │ ├── illd_common
│ │ │ └── ifx_cfg
│ │ │ └── src
│ │ │ ├── ifx_cfg.o
│ │ │ ├── ifx_cfg.src
│ │ │ └── subdir.mk
│ │ └── illd_tc26x
│ │ └── src
│ │ └── ifx
│ │ ├── SrvSw
│ │ │ ├── If
│ │ │ │ ├── SpiIf.o
│ │ │ │ ├── SpiIf.src
│ │ │ │ └── subdir.mk
│ │ │ ├── StdIf
│ │ │ │ ├── IfxStdIf_DPipe.o
│ │ │ │ ├── IfxStdIf_DPipe.src
│ │ │ │ ├── IfxStdIf_Pos.o
│ │ │ │ ├── IfxStdIf_Pos.src
│ │ │ │ ├── IfxStdIf_PwmHl.o
│ │ │ │ ├── IfxStdIf_PwmHl.src
│ │ │ │ ├── IfxStdIf_Timer.o
│ │ │ │ ├── IfxStdIf_Timer.src
│ │ │ │ └── subdir.mk
│ │ │ ├── SysSe
│ │ │ │ ├── Bsp
│ │ │ │ │ ├── Assert.o
│ │ │ │ │ ├── Assert.src
│ │ │ │ │ ├── Bsp.o
│ │ │ │ │ ├── Bsp.src
│ │ │ │ │ └── subdir.mk
│ │ │ │ ├── Comm
│ │ │ │ │ ├── Ifx_Console.o
│ │ │ │ │ ├── Ifx_Console.src
│ │ │ │ │ ├── Ifx_Shell.o
│ │ │ │ │ ├── Ifx_Shell.src
│ │ │ │ │ └── subdir.mk
│ │ │ │ ├── General
│ │ │ │ │ ├── Ifx_GlobalResources.o
│ │ │ │ │ ├── Ifx_GlobalResources.src
│ │ │ │ │ └── subdir.mk
│ │ │ │ ├── Math
│ │ │ │ │ ├── Ifx_LowPassPt1.o
│ │ │ │ │ ├── Ifx_LowPassPt1.src
│ │ │ │ │ └── subdir.mk
│ │ │ │ └── Time
│ │ │ │ ├── Ifx_DateTime.o
│ │ │ │ ├── Ifx_DateTime.src
│ │ │ │ └── subdir.mk
│ │ │ └── Tricore
│ │ │ └── Compilers
│ │ │ ├── CompilerDcc.o
│ │ │ ├── CompilerDcc.src
│ │ │ ├── CompilerGnuc.o
│ │ │ ├── CompilerGnuc.src
│ │ │ ├── CompilerTasking.o
│ │ │ ├── CompilerTasking.src
│ │ │ └── subdir.mk
│ │ └── TC26x
│ │ ├── Asclin
│ │ │ ├── Asc
│ │ │ │ ├── IfxAsclin_Asc.o
│ │ │ │ ├── IfxAsclin_Asc.src
│ │ │ │ └── subdir.mk
│ │ │ ├── Lin
│ │ │ │ ├── IfxAsclin_Lin.o
│ │ │ │ ├── IfxAsclin_Lin.src
│ │ │ │ └── subdir.mk
│ │ │ ├── Spi
│ │ │ │ ├── IfxAsclin_Spi.o
│ │ │ │ ├── IfxAsclin_Spi.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxAsclin.o
│ │ │ ├── IfxAsclin.src
│ │ │ └── subdir.mk
│ │ ├── Ccu6
│ │ │ ├── Icu
│ │ │ │ ├── IfxCcu6_Icu.o
│ │ │ │ ├── IfxCcu6_Icu.src
│ │ │ │ └── subdir.mk
│ │ │ ├── PwmBc
│ │ │ │ ├── IfxCcu6_PwmBc.o
│ │ │ │ ├── IfxCcu6_PwmBc.src
│ │ │ │ └── subdir.mk
│ │ │ ├── PwmHl
│ │ │ │ ├── IfxCcu6_PwmHl.o
│ │ │ │ ├── IfxCcu6_PwmHl.src
│ │ │ │ └── subdir.mk
│ │ │ ├── Std
│ │ │ │ ├── IfxCcu6.o
│ │ │ │ ├── IfxCcu6.src
│ │ │ │ └── subdir.mk
│ │ │ ├── Timer
│ │ │ │ ├── IfxCcu6_Timer.o
│ │ │ │ ├── IfxCcu6_Timer.src
│ │ │ │ └── subdir.mk
│ │ │ ├── TimerWithTrigger
│ │ │ │ ├── IfxCcu6_TimerWithTrigger.o
│ │ │ │ ├── IfxCcu6_TimerWithTrigger.src
│ │ │ │ └── subdir.mk
│ │ │ └── TPwm
│ │ │ ├── IfxCcu6_TPwm.o
│ │ │ ├── IfxCcu6_TPwm.src
│ │ │ └── subdir.mk
│ │ ├── Cif
│ │ │ ├── Cam
│ │ │ │ ├── IfxCif_Cam.o
│ │ │ │ ├── IfxCif_Cam.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxCif.o
│ │ │ ├── IfxCif.src
│ │ │ └── subdir.mk
│ │ ├── Cpu
│ │ │ ├── CStart
│ │ │ │ ├── IfxCpu_CStart0.o
│ │ │ │ ├── IfxCpu_CStart0.src
│ │ │ │ ├── IfxCpu_CStart1.o
│ │ │ │ ├── IfxCpu_CStart1.src
│ │ │ │ └── subdir.mk
│ │ │ ├── Irq
│ │ │ │ ├── IfxCpu_Irq.o
│ │ │ │ ├── IfxCpu_Irq.src
│ │ │ │ └── subdir.mk
│ │ │ ├── Std
│ │ │ │ ├── IfxCpu.o
│ │ │ │ ├── IfxCpu.src
│ │ │ │ └── subdir.mk
│ │ │ └── Trap
│ │ │ ├── IfxCpu_Trap.o
│ │ │ ├── IfxCpu_Trap.src
│ │ │ └── subdir.mk
│ │ ├── Dma
│ │ │ ├── Dma
│ │ │ │ ├── IfxDma_Dma.o
│ │ │ │ ├── IfxDma_Dma.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxDma.o
│ │ │ ├── IfxDma.src
│ │ │ └── subdir.mk
│ │ ├── Dsadc
│ │ │ ├── Dsadc
│ │ │ │ ├── IfxDsadc_Dsadc.o
│ │ │ │ ├── IfxDsadc_Dsadc.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxDsadc.o
│ │ │ ├── IfxDsadc.src
│ │ │ └── subdir.mk
│ │ ├── Dts
│ │ │ ├── Dts
│ │ │ │ ├── IfxDts_Dts.o
│ │ │ │ ├── IfxDts_Dts.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxDts.o
│ │ │ ├── IfxDts.src
│ │ │ └── subdir.mk
│ │ ├── Emem
│ │ │ └── Std
│ │ │ ├── IfxEmem.o
│ │ │ ├── IfxEmem.src
│ │ │ └── subdir.mk
│ │ ├── Eray
│ │ │ ├── Eray
│ │ │ │ ├── IfxEray_Eray.o
│ │ │ │ ├── IfxEray_Eray.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxEray.o
│ │ │ ├── IfxEray.src
│ │ │ └── subdir.mk
│ │ ├── Eth
│ │ │ ├── Phy_Pef7071
│ │ │ │ ├── IfxEth_Phy_Pef7071.o
│ │ │ │ ├── IfxEth_Phy_Pef7071.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxEth.o
│ │ │ ├── IfxEth.src
│ │ │ └── subdir.mk
│ │ ├── Fce
│ │ │ ├── Crc
│ │ │ │ ├── IfxFce_Crc.o
│ │ │ │ ├── IfxFce_Crc.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxFce.o
│ │ │ ├── IfxFce.src
│ │ │ └── subdir.mk
│ │ ├── Fft
│ │ │ ├── Fft
│ │ │ │ ├── IfxFft_Fft.o
│ │ │ │ ├── IfxFft_Fft.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxFft.o
│ │ │ ├── IfxFft.src
│ │ │ └── subdir.mk
│ │ ├── Flash
│ │ │ └── Std
│ │ │ ├── IfxFlash.o
│ │ │ ├── IfxFlash.src
│ │ │ └── subdir.mk
│ │ ├── Gpt12
│ │ │ ├── IncrEnc
│ │ │ │ ├── IfxGpt12_IncrEnc.o
│ │ │ │ ├── IfxGpt12_IncrEnc.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxGpt12.o
│ │ │ ├── IfxGpt12.src
│ │ │ └── subdir.mk
│ │ ├── Gtm
│ │ │ ├── Atom
│ │ │ │ ├── Pwm
│ │ │ │ │ ├── IfxGtm_Atom_Pwm.o
│ │ │ │ │ ├── IfxGtm_Atom_Pwm.src
│ │ │ │ │ └── subdir.mk
│ │ │ │ ├── PwmHl
│ │ │ │ │ ├── IfxGtm_Atom_PwmHl.o
│ │ │ │ │ ├── IfxGtm_Atom_PwmHl.src
│ │ │ │ │ └── subdir.mk
│ │ │ │ └── Timer
│ │ │ │ ├── IfxGtm_Atom_Timer.o
│ │ │ │ ├── IfxGtm_Atom_Timer.src
│ │ │ │ └── subdir.mk
│ │ │ ├── Std
│ │ │ │ ├── IfxGtm_Atom.o
│ │ │ │ ├── IfxGtm_Atom.src
│ │ │ │ ├── IfxGtm_Cmu.o
│ │ │ │ ├── IfxGtm_Cmu.src
│ │ │ │ ├── IfxGtm_Dpll.o
│ │ │ │ ├── IfxGtm_Dpll.src
│ │ │ │ ├── IfxGtm.o
│ │ │ │ ├── IfxGtm.src
│ │ │ │ ├── IfxGtm_Tbu.o
│ │ │ │ ├── IfxGtm_Tbu.src
│ │ │ │ ├── IfxGtm_Tim.o
│ │ │ │ ├── IfxGtm_Tim.src
│ │ │ │ ├── IfxGtm_Tom.o
│ │ │ │ ├── IfxGtm_Tom.src
│ │ │ │ └── subdir.mk
│ │ │ ├── Tom
│ │ │ │ ├── Pwm
│ │ │ │ │ ├── IfxGtm_Tom_Pwm.o
│ │ │ │ │ ├── IfxGtm_Tom_Pwm.src
│ │ │ │ │ └── subdir.mk
│ │ │ │ ├── PwmHl
│ │ │ │ │ ├── IfxGtm_Tom_PwmHl.o
│ │ │ │ │ ├── IfxGtm_Tom_PwmHl.src
│ │ │ │ │ └── subdir.mk
│ │ │ │ └── Timer
│ │ │ │ ├── IfxGtm_Tom_Timer.o
│ │ │ │ ├── IfxGtm_Tom_Timer.src
│ │ │ │ └── subdir.mk
│ │ │ └── Trig
│ │ │ ├── IfxGtm_Trig.o
│ │ │ ├── IfxGtm_Trig.src
│ │ │ └── subdir.mk
│ │ ├── Hssl
│ │ │ ├── Hssl
│ │ │ │ ├── IfxHssl_Hssl.o
│ │ │ │ ├── IfxHssl_Hssl.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxHssl.o
│ │ │ ├── IfxHssl.src
│ │ │ └── subdir.mk
│ │ ├── I2c
│ │ │ ├── I2c
│ │ │ │ ├── IfxI2c_I2c.o
│ │ │ │ ├── IfxI2c_I2c.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxI2c.o
│ │ │ ├── IfxI2c.src
│ │ │ └── subdir.mk
│ │ ├── _Impl
│ │ │ ├── IfxCcu6_cfg.o
│ │ │ ├── IfxCcu6_cfg.src
│ │ │ ├── IfxCif_cfg.o
│ │ │ ├── IfxCif_cfg.src
│ │ │ ├── IfxCpu_cfg.o
│ │ │ ├── IfxCpu_cfg.src
│ │ │ ├── IfxDma_cfg.o
│ │ │ ├── IfxDma_cfg.src
│ │ │ ├── IfxFft_cfg.o
│ │ │ ├── IfxFft_cfg.src
│ │ │ ├── IfxFlash_cfg.o
│ │ │ ├── IfxFlash_cfg.src
│ │ │ ├── IfxMsc_cfg.o
│ │ │ ├── IfxMsc_cfg.src
│ │ │ ├── IfxMtu_cfg.o
│ │ │ ├── IfxMtu_cfg.src
│ │ │ ├── IfxMultican_cfg.o
│ │ │ ├── IfxMultican_cfg.src
│ │ │ ├── IfxPort_cfg.o
│ │ │ ├── IfxPort_cfg.src
│ │ │ ├── IfxPsi5_cfg.o
│ │ │ ├── IfxPsi5_cfg.src
│ │ │ ├── IfxScu_cfg.o
│ │ │ ├── IfxScu_cfg.src
│ │ │ ├── IfxSent_cfg.o
│ │ │ ├── IfxSent_cfg.src
│ │ │ ├── IfxSrc_cfg.o
│ │ │ ├── IfxSrc_cfg.src
│ │ │ ├── IfxStm_cfg.o
│ │ │ ├── IfxStm_cfg.src
│ │ │ ├── IfxVadc_cfg.o
│ │ │ ├── IfxVadc_cfg.src
│ │ │ └── subdir.mk
│ │ ├── Iom
│ │ │ ├── Iom
│ │ │ │ ├── IfxIom_Iom.o
│ │ │ │ ├── IfxIom_Iom.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxIom.o
│ │ │ ├── IfxIom.src
│ │ │ └── subdir.mk
│ │ ├── _Lib
│ │ │ ├── DataHandling
│ │ │ │ ├── Ifx_CircularBuffer.asm.o
│ │ │ │ ├── Ifx_CircularBuffer.asm.src
│ │ │ │ ├── Ifx_CircularBuffer.o
│ │ │ │ ├── Ifx_CircularBuffer.src
│ │ │ │ ├── Ifx_Fifo.o
│ │ │ │ ├── Ifx_Fifo.src
│ │ │ │ └── subdir.mk
│ │ │ └── InternalMux
│ │ │ ├── Ifx_InternalMux.o
│ │ │ ├── Ifx_InternalMux.src
│ │ │ └── subdir.mk
│ │ ├── Msc
│ │ │ ├── Msc
│ │ │ │ ├── IfxMsc_Msc.o
│ │ │ │ ├── IfxMsc_Msc.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxMsc.o
│ │ │ ├── IfxMsc.src
│ │ │ └── subdir.mk
│ │ ├── Mtu
│ │ │ └── Std
│ │ │ ├── IfxMtu.o
│ │ │ ├── IfxMtu.src
│ │ │ └── subdir.mk
│ │ ├── Multican
│ │ │ ├── Can
│ │ │ │ ├── IfxMultican_Can.o
│ │ │ │ ├── IfxMultican_Can.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxMultican.o
│ │ │ ├── IfxMultican.src
│ │ │ └── subdir.mk
│ │ ├── _PinMap
│ │ │ ├── IfxAsclin_PinMap.o
│ │ │ ├── IfxAsclin_PinMap.src
│ │ │ ├── IfxCcu6_PinMap.o
│ │ │ ├── IfxCcu6_PinMap.src
│ │ │ ├── IfxCif_PinMap.o
│ │ │ ├── IfxCif_PinMap.src
│ │ │ ├── IfxDsadc_PinMap.o
│ │ │ ├── IfxDsadc_PinMap.src
│ │ │ ├── IfxEray_PinMap.o
│ │ │ ├── IfxEray_PinMap.src
│ │ │ ├── IfxEth_PinMap.o
│ │ │ ├── IfxEth_PinMap.src
│ │ │ ├── IfxGpt12_PinMap.o
│ │ │ ├── IfxGpt12_PinMap.src
│ │ │ ├── IfxGtm_PinMap.o
│ │ │ ├── IfxGtm_PinMap.src
│ │ │ ├── IfxI2c_PinMap.o
│ │ │ ├── IfxI2c_PinMap.src
│ │ │ ├── IfxMsc_PinMap.o
│ │ │ ├── IfxMsc_PinMap.src
│ │ │ ├── IfxMultican_PinMap.o
│ │ │ ├── IfxMultican_PinMap.src
│ │ │ ├── IfxPort_PinMap.o
│ │ │ ├── IfxPort_PinMap.src
│ │ │ ├── IfxPsi5_PinMap.o
│ │ │ ├── IfxPsi5_PinMap.src
│ │ │ ├── IfxPsi5s_PinMap.o
│ │ │ ├── IfxPsi5s_PinMap.src
│ │ │ ├── IfxQspi_PinMap.o
│ │ │ ├── IfxQspi_PinMap.src
│ │ │ ├── IfxScu_PinMap.o
│ │ │ ├── IfxScu_PinMap.src
│ │ │ ├── IfxSent_PinMap.o
│ │ │ ├── IfxSent_PinMap.src
│ │ │ ├── IfxSmu_PinMap.o
│ │ │ ├── IfxSmu_PinMap.src
│ │ │ ├── IfxVadc_PinMap.o
│ │ │ ├── IfxVadc_PinMap.src
│ │ │ └── subdir.mk
│ │ ├── Port
│ │ │ ├── Io
│ │ │ │ ├── IfxPort_Io.o
│ │ │ │ ├── IfxPort_Io.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxPort.o
│ │ │ ├── IfxPort.src
│ │ │ └── subdir.mk
│ │ ├── Psi5
│ │ │ ├── Psi5
│ │ │ │ ├── IfxPsi5_Psi5.o
│ │ │ │ ├── IfxPsi5_Psi5.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxPsi5.o
│ │ │ ├── IfxPsi5.src
│ │ │ └── subdir.mk
│ │ ├── Psi5s
│ │ │ ├── Psi5s
│ │ │ │ ├── IfxPsi5s_Psi5s.o
│ │ │ │ ├── IfxPsi5s_Psi5s.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxPsi5s.o
│ │ │ ├── IfxPsi5s.src
│ │ │ └── subdir.mk
│ │ ├── Qspi
│ │ │ ├── SpiMaster
│ │ │ │ ├── IfxQspi_SpiMaster.o
│ │ │ │ ├── IfxQspi_SpiMaster.src
│ │ │ │ └── subdir.mk
│ │ │ ├── SpiSlave
│ │ │ │ ├── IfxQspi_SpiSlave.o
│ │ │ │ ├── IfxQspi_SpiSlave.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxQspi.o
│ │ │ ├── IfxQspi.src
│ │ │ └── subdir.mk
│ │ ├── Scu
│ │ │ └── Std
│ │ │ ├── IfxScuCcu.o
│ │ │ ├── IfxScuCcu.src
│ │ │ ├── IfxScuEru.o
│ │ │ ├── IfxScuEru.src
│ │ │ ├── IfxScuWdt.o
│ │ │ ├── IfxScuWdt.src
│ │ │ └── subdir.mk
│ │ ├── Sent
│ │ │ ├── Sent
│ │ │ │ ├── IfxSent_Sent.o
│ │ │ │ ├── IfxSent_Sent.src
│ │ │ │ └── subdir.mk
│ │ │ └── Std
│ │ │ ├── IfxSent.o
│ │ │ ├── IfxSent.src
│ │ │ └── subdir.mk
│ │ ├── Src
│ │ │ └── Std
│ │ │ ├── IfxSrc.o
│ │ │ ├── IfxSrc.src
│ │ │ └── subdir.mk
│ │ ├── Stm
│ │ │ └── Std
│ │ │ ├── IfxStm.o
│ │ │ ├── IfxStm.src
│ │ │ └── subdir.mk
│ │ └── Vadc
│ │ ├── Adc
│ │ │ ├── IfxVadc_Adc.o
│ │ │ ├── IfxVadc_Adc.src
│ │ │ └── subdir.mk
│ │ └── Std
│ │ ├── IfxVadc.o
│ │ ├── IfxVadc.src
│ │ └── subdir.mk
│ ├── subdir.mk
│ ├── sync_on_halt.o
│ └── sync_on_halt.src
├── Gpt12Demo.c
├── Gpt12Demo.h
├── Gpt12Demo.launch
├── Gpt12Demo.lsl
├── Gpt12Demo.pincfg
├── Gpt12Demo.swpxmi
├── mainPage.dox
├── PinMapper
│ ├── aurix_pin_mappings.c
│ └── aurix_pin_mappings.h
├── SoftwarePlatform
│ ├── Configuration
│ │ ├── aurix_illd_cfg.h
│ │ ├── devices.h
│ │ ├── __framework_init.c
│ │ ├── Gpt12Demo.swpgen
│ │ ├── ifx_cfg_cfg.h
│ │ ├── limits_cfg.h
│ │ ├── swplatform.h
│ │ └── swplatform.orti
│ ├── illd_common
│ │ ├── aurix_illd
│ │ │ └── ini
│ │ │ └── illd_device.Interface
│ │ └── ifx_cfg
│ │ ├── include
│ │ │ └── Ifx_Cfg.h
│ │ ├── ini
│ │ │ ├── ifx_cfg.Interface
│ │ │ └── ifx_cfg.Plugin
│ │ └── src
│ │ └── ifx_cfg.c
│ └── illd_tc26x
│ ├── ini
│ │ └── illd_tc26x.Plugin
│ └── src
│ └── ifx
│ ├── SrvSw
│ │ ├── If
│ │ │ ├── Ccu6If
│ │ │ │ ├── Icu.h
│ │ │ │ ├── PwmHl.h
│ │ │ │ ├── Timer.h
│ │ │ │ └── TPwm.h
│ │ │ ├── SpiIf.c
│ │ │ └── SpiIf.h
│ │ ├── StdIf
│ │ │ ├── IfxStdIf_DPipe.c
│ │ │ ├── IfxStdIf_DPipe.h
│ │ │ ├── IfxStdIf.h
│ │ │ ├── IfxStdIf_Pos.c
│ │ │ ├── IfxStdIf_Pos.h
│ │ │ ├── IfxStdIf_PwmHl.c
│ │ │ ├── IfxStdIf_PwmHl.h
│ │ │ ├── IfxStdIf_Timer.c
│ │ │ ├── IfxStdIf_Timer.h
│ │ │ ├── StandardInterfaceDataPipeExample.png
│ │ │ ├── StandardInterfaceLayers.png
│ │ │ ├── StandardInterfaceTimerExample.png
│ │ │ └── Timer.png
│ │ ├── SysSe
│ │ │ ├── Bsp
│ │ │ │ ├── Assert.c
│ │ │ │ ├── Assert.h
│ │ │ │ ├── Bsp.c
│ │ │ │ └── Bsp.h
│ │ │ ├── Comm
│ │ │ │ ├── Ifx_Console.c
│ │ │ │ ├── Ifx_Console.h
│ │ │ │ ├── Ifx_Shell.c
│ │ │ │ └── Ifx_Shell.h
│ │ │ ├── General
│ │ │ │ ├── Ifx_GlobalResources.c
│ │ │ │ └── Ifx_GlobalResources.h
│ │ │ ├── Math
│ │ │ │ ├── Ifx_LowPassPt1.c
│ │ │ │ └── Ifx_LowPassPt1.h
│ │ │ └── Time
│ │ │ ├── Ifx_DateTime.c
│ │ │ └── Ifx_DateTime.h
│ │ ├── Tricore
│ │ │ └── Compilers
│ │ │ ├── CompilerDcc.c
│ │ │ ├── CompilerDcc.h
│ │ │ ├── CompilerGnuc.c
│ │ │ ├── CompilerGnuc.h
│ │ │ ├── Compilers.h
│ │ │ ├── CompilerTasking.c
│ │ │ └── CompilerTasking.h
│ │ └── _Utilities
│ │ └── Ifx_Assert.h
│ └── TC26x
│ ├── Asclin
│ │ ├── Asc
│ │ │ ├── IfxAsclin_Asc.c
│ │ │ └── IfxAsclin_Asc.h
│ │ ├── Lin
│ │ │ ├── IfxAsclin_Lin.c
│ │ │ └── IfxAsclin_Lin.h
│ │ ├── Spi
│ │ │ ├── IfxAsclin_Spi.c
│ │ │ └── IfxAsclin_Spi.h
│ │ └── Std
│ │ ├── IfxAsclin.c
│ │ └── IfxAsclin.h
│ ├── _Build
│ │ ├── IfxAsclin.xml
│ │ ├── IfxCcu6.xml
│ │ ├── IfxCif.xml
│ │ ├── IfxCpu.xml
│ │ ├── IfxDma.xml
│ │ ├── IfxDsadc.xml
│ │ ├── IfxDts.xml
│ │ ├── IfxEmem.xml
│ │ ├── IfxEray.xml
│ │ ├── IfxEth.xml
│ │ ├── IfxFce.xml
│ │ ├── IfxFft.xml
│ │ ├── IfxFlash.xml
│ │ ├── IfxGtm.xml
│ │ ├── IfxHssl.xml
│ │ ├── IfxI2c.xml
│ │ ├── IfxIom.xml
│ │ ├── IfxMsc.xml
│ │ ├── IfxMtu.xml
│ │ ├── IfxMultican.xml
│ │ ├── IfxPort.xml
│ │ ├── IfxPsi5s.xml
│ │ ├── IfxPsi5.xml
│ │ ├── IfxQspi.xml
│ │ ├── IfxScu.xml
│ │ ├── IfxSent.xml
│ │ ├── IfxStm.xml
│ │ └── IfxVadc.xml
│ ├── Ccu6
│ │ ├── Icu
│ │ │ ├── IfxCcu6_Icu.c
│ │ │ └── IfxCcu6_Icu.h
│ │ ├── PwmBc
│ │ │ ├── IfxCcu6_PwmBc.c
│ │ │ └── IfxCcu6_PwmBc.h
│ │ ├── PwmHl
│ │ │ ├── IfxCcu6_PwmHl.c
│ │ │ └── IfxCcu6_PwmHl.h
│ │ ├── Std
│ │ │ ├── IfxCcu6.c
│ │ │ └── IfxCcu6.h
│ │ ├── Timer
│ │ │ ├── IfxCcu6_Timer.c
│ │ │ └── IfxCcu6_Timer.h
│ │ ├── TimerWithTrigger
│ │ │ ├── IfxCcu6_TimerWithTrigger.c
│ │ │ └── IfxCcu6_TimerWithTrigger.h
│ │ └── TPwm
│ │ ├── IfxCcu6_TPwm.c
│ │ └── IfxCcu6_TPwm.h
│ ├── Cif
│ │ ├── Cam
│ │ │ ├── IfxCif_Cam.c
│ │ │ └── IfxCif_Cam.h
│ │ └── Std
│ │ ├── IfxCif.c
│ │ └── IfxCif.h
│ ├── Cpu
│ │ ├── CStart
│ │ │ ├── IfxCpu_CStart0.c
│ │ │ ├── IfxCpu_CStart1.c
│ │ │ └── IfxCpu_CStart.h
│ │ ├── Irq
│ │ │ ├── IfxCpu_Irq.c
│ │ │ └── IfxCpu_Irq.h
│ │ ├── Std
│ │ │ ├── IfxCpu.c
│ │ │ ├── IfxCpu.h
│ │ │ ├── IfxCpu_IntrinsicsDcc.h
│ │ │ ├── IfxCpu_IntrinsicsGnuc.h
│ │ │ ├── IfxCpu_Intrinsics.h
│ │ │ ├── IfxCpu_IntrinsicsTasking.h
│ │ │ ├── Ifx_TypesDcc.h
│ │ │ ├── Ifx_TypesGnuc.h
│ │ │ ├── Ifx_Types.h
│ │ │ ├── Ifx_TypesTasking.h
│ │ │ └── Platform_Types.h
│ │ └── Trap
│ │ ├── IfxCpu_Trap.c
│ │ └── IfxCpu_Trap.h
│ ├── Dma
│ │ ├── Dma
│ │ │ ├── IfxDma_Dma.c
│ │ │ └── IfxDma_Dma.h
│ │ └── Std
│ │ ├── IfxDma.c
│ │ └── IfxDma.h
│ ├── Dsadc
│ │ ├── Dsadc
│ │ │ ├── IfxDsadc_Dsadc.c
│ │ │ └── IfxDsadc_Dsadc.h
│ │ └── Std
│ │ ├── IfxDsadc.c
│ │ └── IfxDsadc.h
│ ├── Dts
│ │ ├── Dts
│ │ │ ├── IfxDts_Dts.c
│ │ │ └── IfxDts_Dts.h
│ │ └── Std
│ │ ├── IfxDts.c
│ │ └── IfxDts.h
│ ├── Emem
│ │ └── Std
│ │ ├── IfxEmem.c
│ │ └── IfxEmem.h
│ ├── Eray
│ │ ├── Eray
│ │ │ ├── IfxEray_Eray.c
│ │ │ └── IfxEray_Eray.h
│ │ └── Std
│ │ ├── IfxEray.c
│ │ └── IfxEray.h
│ ├── Eth
│ │ ├── Phy_Pef7071
│ │ │ ├── IfxEth_Phy_Pef7071.c
│ │ │ └── IfxEth_Phy_Pef7071.h
│ │ └── Std
│ │ ├── IfxEth.c
│ │ └── IfxEth.h
│ ├── Fce
│ │ ├── Crc
│ │ │ ├── IfxFce_Crc.c
│ │ │ └── IfxFce_Crc.h
│ │ └── Std
│ │ ├── IfxFce.c
│ │ └── IfxFce.h
│ ├── Fft
│ │ ├── Fft
│ │ │ ├── IfxFft_Fft.c
│ │ │ └── IfxFft_Fft.h
│ │ └── Std
│ │ ├── IfxFft.c
│ │ └── IfxFft.h
│ ├── Flash
│ │ └── Std
│ │ ├── IfxFlash.c
│ │ └── IfxFlash.h
│ ├── Gpt12
│ │ ├── IncrEnc
│ │ │ ├── IfxGpt12_IncrEnc.c
│ │ │ └── IfxGpt12_IncrEnc.h
│ │ └── Std
│ │ ├── IfxGpt12.c
│ │ └── IfxGpt12.h
│ ├── Gtm
│ │ ├── Atom
│ │ │ ├── Pwm
│ │ │ │ ├── IfxGtm_Atom_Pwm.c
│ │ │ │ └── IfxGtm_Atom_Pwm.h
│ │ │ ├── PwmHl
│ │ │ │ ├── IfxGtm_Atom_PwmHl.c
│ │ │ │ └── IfxGtm_Atom_PwmHl.h
│ │ │ └── Timer
│ │ │ ├── IfxGtm_Atom_Timer.c
│ │ │ └── IfxGtm_Atom_Timer.h
│ │ ├── Std
│ │ │ ├── IfxGtm_Atom.c
│ │ │ ├── IfxGtm_Atom.h
│ │ │ ├── IfxGtm.c
│ │ │ ├── IfxGtm_Cmu.c
│ │ │ ├── IfxGtm_Cmu.h
│ │ │ ├── IfxGtm_Dpll.c
│ │ │ ├── IfxGtm_Dpll.h
│ │ │ ├── IfxGtm.h
│ │ │ ├── IfxGtm_Tbu.c
│ │ │ ├── IfxGtm_Tbu.h
│ │ │ ├── IfxGtm_Tim.c
│ │ │ ├── IfxGtm_Tim.h
│ │ │ ├── IfxGtm_Tom.c
│ │ │ └── IfxGtm_Tom.h
│ │ ├── Tom
│ │ │ ├── Pwm
│ │ │ │ ├── IfxGtm_Tom_Pwm.c
│ │ │ │ └── IfxGtm_Tom_Pwm.h
│ │ │ ├── PwmHl
│ │ │ │ ├── IfxGtm_Tom_PwmHl.c
│ │ │ │ └── IfxGtm_Tom_PwmHl.h
│ │ │ └── Timer
│ │ │ ├── IfxGtm_Tom_Timer.c
│ │ │ └── IfxGtm_Tom_Timer.h
│ │ └── Trig
│ │ ├── IfxGtm_Trig.c
│ │ └── IfxGtm_Trig.h
│ ├── Hssl
│ │ ├── Hssl
│ │ │ ├── IfxHssl_Hssl.c
│ │ │ └── IfxHssl_Hssl.h
│ │ └── Std
│ │ ├── IfxHssl.c
│ │ └── IfxHssl.h
│ ├── I2c
│ │ ├── I2c
│ │ │ ├── IfxI2c_I2c.c
│ │ │ └── IfxI2c_I2c.h
│ │ └── Std
│ │ ├── IfxI2c.c
│ │ └── IfxI2c.h
│ ├── IfxLldVersion.h
│ ├── _Impl
│ │ ├── IfxAsclin_cfg.h
│ │ ├── IfxCcu6_cfg.c
│ │ ├── IfxCcu6_cfg.h
│ │ ├── IfxCif_cfg.c
│ │ ├── IfxCif_cfg.h
│ │ ├── IfxCpu_cfg.c
│ │ ├── IfxCpu_cfg.h
│ │ ├── IfxDma_cfg.c
│ │ ├── IfxDma_cfg.h
│ │ ├── IfxDsadc_cfg.h
│ │ ├── IfxDts_cfg.h
│ │ ├── IfxEmem_cfg.h
│ │ ├── IfxEray_cfg.h
│ │ ├── IfxEth_cfg.h
│ │ ├── IfxFce_cfg.h
│ │ ├── IfxFft_cfg.c
│ │ ├── IfxFft_cfg.h
│ │ ├── IfxFlash_cfg.c
│ │ ├── IfxFlash_cfg.h
│ │ ├── IfxGlobal_cfg.h
│ │ ├── IfxGpt12_cfg.h
│ │ ├── IfxGtm_cfg.h
│ │ ├── IfxHssl_cfg.h
│ │ ├── IfxI2c_cfg.h
│ │ ├── IfxIom_cfg.h
│ │ ├── IfxMsc_cfg.c
│ │ ├── IfxMsc_cfg.h
│ │ ├── IfxMtu_cfg.c
│ │ ├── IfxMtu_cfg.h
│ │ ├── IfxMultican_cfg.c
│ │ ├── IfxMultican_cfg.h
│ │ ├── IfxPort_cfg.c
│ │ ├── IfxPort_cfg.h
│ │ ├── IfxPsi5_cfg.c
│ │ ├── IfxPsi5_cfg.h
│ │ ├── IfxPsi5s_cfg.h
│ │ ├── IfxQspi_cfg.h
│ │ ├── IfxScu_cfg.c
│ │ ├── IfxScu_cfg.h
│ │ ├── IfxSent_cfg.c
│ │ ├── IfxSent_cfg.h
│ │ ├── IfxSrc_cfg.c
│ │ ├── IfxSrc_cfg.h
│ │ ├── IfxStm_cfg.c
│ │ ├── IfxStm_cfg.h
│ │ ├── IfxVadc_cfg.c
│ │ └── IfxVadc_cfg.h
│ ├── Iom
│ │ ├── Iom
│ │ │ ├── IfxIom_Iom.c
│ │ │ └── IfxIom_Iom.h
│ │ └── Std
│ │ ├── IfxIom.c
│ │ └── IfxIom.h
│ ├── _Lib
│ │ ├── DataHandling
│ │ │ ├── Ifx_CircularBuffer.asm.c
│ │ │ ├── Ifx_CircularBuffer.c
│ │ │ ├── Ifx_CircularBuffer.h
│ │ │ ├── Ifx_Fifo.c
│ │ │ └── Ifx_Fifo.h
│ │ └── InternalMux
│ │ ├── Ifx_InternalMux.c
│ │ └── Ifx_InternalMux.h
│ ├── Msc
│ │ ├── Msc
│ │ │ ├── IfxMsc_Msc.c
│ │ │ └── IfxMsc_Msc.h
│ │ └── Std
│ │ ├── IfxMsc.c
│ │ └── IfxMsc.h
│ ├── Mtu
│ │ └── Std
│ │ ├── IfxMtu.c
│ │ └── IfxMtu.h
│ ├── Multican
│ │ ├── Can
│ │ │ ├── IfxMultican_Can.c
│ │ │ └── IfxMultican_Can.h
│ │ └── Std
│ │ ├── IfxMultican.c
│ │ └── IfxMultican.h
│ ├── _PinMap
│ │ ├── IfxAsclin_PinMap.c
│ │ ├── IfxAsclin_PinMap.h
│ │ ├── IfxCcu6_PinMap.c
│ │ ├── IfxCcu6_PinMap.h
│ │ ├── IfxCif_PinMap.c
│ │ ├── IfxCif_PinMap.h
│ │ ├── IfxDsadc_PinMap.c
│ │ ├── IfxDsadc_PinMap.h
│ │ ├── IfxEray_PinMap.c
│ │ ├── IfxEray_PinMap.h
│ │ ├── IfxEth_PinMap.c
│ │ ├── IfxEth_PinMap.h
│ │ ├── IfxGpt12_PinMap.c
│ │ ├── IfxGpt12_PinMap.h
│ │ ├── IfxGtm_PinMap.c
│ │ ├── IfxGtm_PinMap.h
│ │ ├── IfxI2c_PinMap.c
│ │ ├── IfxI2c_PinMap.h
│ │ ├── IfxMsc_PinMap.c
│ │ ├── IfxMsc_PinMap.h
│ │ ├── IfxMultican_PinMap.c
│ │ ├── IfxMultican_PinMap.h
│ │ ├── IfxPort_PinMap.c
│ │ ├── IfxPort_PinMap.h
│ │ ├── IfxPsi5_PinMap.c
│ │ ├── IfxPsi5_PinMap.h
│ │ ├── IfxPsi5s_PinMap.c
│ │ ├── IfxPsi5s_PinMap.h
│ │ ├── IfxQspi_PinMap.c
│ │ ├── IfxQspi_PinMap.h
│ │ ├── IfxScu_PinMap.c
│ │ ├── IfxScu_PinMap.h
│ │ ├── IfxSent_PinMap.c
│ │ ├── IfxSent_PinMap.h
│ │ ├── IfxSmu_PinMap.c
│ │ ├── IfxSmu_PinMap.h
│ │ ├── IfxVadc_PinMap.c
│ │ └── IfxVadc_PinMap.h
│ ├── Port
│ │ ├── Io
│ │ │ ├── IfxPort_Io.c
│ │ │ └── IfxPort_Io.h
│ │ └── Std
│ │ ├── IfxPort.c
│ │ └── IfxPort.h
│ ├── Psi5
│ │ ├── Psi5
│ │ │ ├── IfxPsi5_Psi5.c
│ │ │ └── IfxPsi5_Psi5.h
│ │ └── Std
│ │ ├── IfxPsi5.c
│ │ └── IfxPsi5.h
│ ├── Psi5s
│ │ ├── Psi5s
│ │ │ ├── IfxPsi5s_Psi5s.c
│ │ │ └── IfxPsi5s_Psi5s.h
│ │ └── Std
│ │ ├── IfxPsi5s.c
│ │ └── IfxPsi5s.h
│ ├── Qspi
│ │ ├── SpiMaster
│ │ │ ├── IfxQspi_SpiMaster.c
│ │ │ └── IfxQspi_SpiMaster.h
│ │ ├── SpiSlave
│ │ │ ├── IfxQspi_SpiSlave.c
│ │ │ └── IfxQspi_SpiSlave.h
│ │ └── Std
│ │ ├── IfxQspi.c
│ │ └── IfxQspi.h
│ ├── _Reg
│ │ ├── IfxAsclin_bf.h
│ │ ├── IfxAsclin_regdef.h
│ │ ├── IfxAsclin_reg.h
│ │ ├── IfxCan_bf.h
│ │ ├── IfxCan_regdef.h
│ │ ├── IfxCan_reg.h
│ │ ├── IfxCbs_bf.h
│ │ ├── IfxCbs_regdef.h
│ │ ├── IfxCbs_reg.h
│ │ ├── IfxCcu6_bf.h
│ │ ├── IfxCcu6_regdef.h
│ │ ├── IfxCcu6_reg.h
│ │ ├── IfxCif_bf.h
│ │ ├── IfxCif_regdef.h
│ │ ├── IfxCif_reg.h
│ │ ├── IfxCpu_bf.h
│ │ ├── IfxCpu_regdef.h
│ │ ├── IfxCpu_reg.h
│ │ ├── IfxDma_bf.h
│ │ ├── IfxDma_regdef.h
│ │ ├── IfxDma_reg.h
│ │ ├── IfxDsadc_bf.h
│ │ ├── IfxDsadc_regdef.h
│ │ ├── IfxDsadc_reg.h
│ │ ├── IfxEbcu_bf.h
│ │ ├── IfxEbcu_regdef.h
│ │ ├── IfxEbcu_reg.h
│ │ ├── IfxEmem_bf.h
│ │ ├── IfxEmem_regdef.h
│ │ ├── IfxEmem_reg.h
│ │ ├── IfxEray_bf.h
│ │ ├── IfxEray_regdef.h
│ │ ├── IfxEray_reg.h
│ │ ├── IfxEth_bf.h
│ │ ├── IfxEth_regdef.h
│ │ ├── IfxEth_reg.h
│ │ ├── IfxFce_bf.h
│ │ ├── IfxFce_regdef.h
│ │ ├── IfxFce_reg.h
│ │ ├── IfxFft_bf.h
│ │ ├── IfxFft_regdef.h
│ │ ├── IfxFft_reg.h
│ │ ├── IfxFlash_bf.h
│ │ ├── IfxFlash_regdef.h
│ │ ├── IfxFlash_reg.h
│ │ ├── IfxGpt12_bf.h
│ │ ├── IfxGpt12_regdef.h
│ │ ├── IfxGpt12_reg.h
│ │ ├── IfxGtm_bf.h
│ │ ├── IfxGtm_regdef.h
│ │ ├── IfxGtm_reg.h
│ │ ├── IfxHsct_bf.h
│ │ ├── IfxHsct_regdef.h
│ │ ├── IfxHsct_reg.h
│ │ ├── IfxHssl_bf.h
│ │ ├── IfxHssl_regdef.h
│ │ ├── IfxHssl_reg.h
│ │ ├── IfxI2c_bf.h
│ │ ├── IfxI2c_regdef.h
│ │ ├── IfxI2c_reg.h
│ │ ├── IfxInt_bf.h
│ │ ├── IfxInt_regdef.h
│ │ ├── IfxInt_reg.h
│ │ ├── IfxIom_bf.h
│ │ ├── IfxIom_regdef.h
│ │ ├── IfxIom_reg.h
│ │ ├── IfxLmu_bf.h
│ │ ├── IfxLmu_regdef.h
│ │ ├── IfxLmu_reg.h
│ │ ├── IfxMc_bf.h
│ │ ├── IfxMc_regdef.h
│ │ ├── IfxMc_reg.h
│ │ ├── IfxMsc_bf.h
│ │ ├── IfxMsc_regdef.h
│ │ ├── IfxMsc_reg.h
│ │ ├── IfxMtu_bf.h
│ │ ├── IfxMtu_regdef.h
│ │ ├── IfxMtu_reg.h
│ │ ├── IfxOvc_bf.h
│ │ ├── IfxOvc_regdef.h
│ │ ├── IfxOvc_reg.h
│ │ ├── IfxPmu_bf.h
│ │ ├── IfxPmu_regdef.h
│ │ ├── IfxPmu_reg.h
│ │ ├── IfxPort_bf.h
│ │ ├── IfxPort_regdef.h
│ │ ├── IfxPort_reg.h
│ │ ├── IfxPsi5_bf.h
│ │ ├── IfxPsi5_regdef.h
│ │ ├── IfxPsi5_reg.h
│ │ ├── IfxPsi5s_bf.h
│ │ ├── IfxPsi5s_regdef.h
│ │ ├── IfxPsi5s_reg.h
│ │ ├── IfxQspi_bf.h
│ │ ├── IfxQspi_regdef.h
│ │ ├── IfxQspi_reg.h
│ │ ├── Ifx_reg.h
│ │ ├── IfxSbcu_bf.h
│ │ ├── IfxSbcu_regdef.h
│ │ ├── IfxSbcu_reg.h
│ │ ├── IfxScu_bf.h
│ │ ├── IfxScu_regdef.h
│ │ ├── IfxScu_reg.h
│ │ ├── IfxSent_bf.h
│ │ ├── IfxSent_regdef.h
│ │ ├── IfxSent_reg.h
│ │ ├── IfxSmu_bf.h
│ │ ├── IfxSmu_regdef.h
│ │ ├── IfxSmu_reg.h
│ │ ├── IfxSrc_bf.h
│ │ ├── IfxSrc_regdef.h
│ │ ├── IfxSrc_reg.h
│ │ ├── IfxStm_bf.h
│ │ ├── IfxStm_regdef.h
│ │ ├── IfxStm_reg.h
│ │ ├── Ifx_TypesReg.h
│ │ ├── IfxVadc_bf.h
│ │ ├── IfxVadc_regdef.h
│ │ ├── IfxVadc_reg.h
│ │ ├── IfxXbar_bf.h
│ │ ├── IfxXbar_regdef.h
│ │ ├── IfxXbar_reg.h
│ │ └── _package.xml
│ ├── Scu
│ │ └── Std
│ │ ├── IfxScuCcu.c
│ │ ├── IfxScuCcu.h
│ │ ├── IfxScuEru.c
│ │ ├── IfxScuEru.h
│ │ ├── IfxScuWdt.asm.h
│ │ ├── IfxScuWdt.c
│ │ └── IfxScuWdt.h
│ ├── Sent
│ │ ├── Sent
│ │ │ ├── IfxSent_Sent.c
│ │ │ └── IfxSent_Sent.h
│ │ └── Std
│ │ ├── IfxSent.c
│ │ └── IfxSent.h
│ ├── Src
│ │ └── Std
│ │ ├── IfxSrc.c
│ │ └── IfxSrc.h
│ ├── Stm
│ │ └── Std
│ │ ├── IfxStm.c
│ │ └── IfxStm.h
│ └── Vadc
│ ├── Adc
│ │ ├── IfxVadc_Adc.c
│ │ └── IfxVadc_Adc.h
│ └── Std
│ ├── IfxVadc.c
│ └── IfxVadc.h
└── sync_on_halt.c
267 directories, 853 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论