嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 4 元微信扫码支付:4 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
S32K144_RTOS_DEMO_V1.03
├── Application_Files
├── BSW_Files
│ ├── BSW_L99M.c
│ ├── BSW_L99M.h
│ ├── BSW_PWM.c
│ └── BSW_PWM.h
├── CMSIS
│ ├── S32K144_64_flash.sct
│ ├── S32K144_64_ram.sct
│ ├── cmsis_armcc.h
│ ├── cmsis_compiler.h
│ ├── cmsis_version.h
│ ├── core_cm4.h
│ ├── s32_core_cm4.h
│ ├── startup.c
│ ├── startup.h
│ ├── startup_S32K144.s
│ ├── system_S32K144.c
│ └── system_S32K144.h
├── Communication_Files
├── Complex_Files
│ ├── BSW_CAN
│ │ ├── BSW_CAN.c
│ │ └── BSW_CAN.h
│ ├── BSW_IIC
│ │ ├── BSW_IIC.c
│ │ └── BSW_IIC.h
│ ├── BSW_SPI
│ │ ├── BSW_SPI.c
│ │ └── BSW_SPI.h
│ └── BSW_UART
│ ├── BSW_UART.c
│ └── BSW_UART.h
├── FreeRTOS
│ ├── croutine.c
│ ├── event_groups.c
│ ├── include
│ │ ├── FreeRTOS.h
│ │ ├── StackMacros.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
│ ├── list.c
│ ├── portable
│ │ ├── Keil
│ │ │ └── See-also-the-RVDS-directory.txt
│ │ ├── MemMang
│ │ │ ├── ReadMe.url
│ │ │ ├── heap_1.c
│ │ │ ├── heap_2.c
│ │ │ ├── heap_3.c
│ │ │ ├── heap_4.c
│ │ │ └── heap_5.c
│ │ └── RVDS
│ │ ├── ARM7_LPC21xx
│ │ │ ├── port.c
│ │ │ ├── portASM.s
│ │ │ ├── portmacro.h
│ │ │ └── portmacro.inc
│ │ ├── ARM_CA9
│ │ │ ├── port.c
│ │ │ ├── portASM.s
│ │ │ ├── portmacro.h
│ │ │ └── portmacro.inc
│ │ ├── ARM_CM0
│ │ │ ├── port.c
│ │ │ └── portmacro.h
│ │ ├── ARM_CM3
│ │ │ ├── port.c
│ │ │ └── portmacro.h
│ │ ├── ARM_CM4F
│ │ │ ├── port.c
│ │ │ └── portmacro.h
│ │ ├── ARM_CM4_MPU
│ │ │ ├── port.c
│ │ │ └── portmacro.h
│ │ └── ARM_CM7
│ │ ├── ReadMe.txt
│ │ └── r0p1
│ │ ├── port.c
│ │ └── portmacro.h
│ ├── queue.c
│ ├── readme.txt
│ ├── tasks.c
│ └── timers.c
├── IO_Files
│ ├── BSW_ADC
│ │ ├── BSW_ADC.c
│ │ └── BSW_ADC.h
│ ├── BSW_DMA
│ │ ├── BSW_DMA.c
│ │ └── BSW_DMA.h
│ ├── BSW_FTM
│ │ ├── BSW_FTM.c
│ │ └── BSW_FTM.h
│ ├── BSW_GPIO
│ │ ├── BSW_GPIO.c
│ │ ├── BSW_GPIO.h
│ │ ├── gpio_cfg.h
│ │ ├── pin_cfg.h
│ │ └── port.h
│ ├── BSW_LPIT
│ │ ├── BSW_LPIT.c
│ │ └── BSW_LPIT.h
│ └── BSW_LPTMR
│ ├── BSW_LPTMR.c
│ └── BSW_LPTMR.h
├── Initiate_Files
│ ├── inc
│ │ ├── adc_driver.h
│ │ ├── clock_manager.h
│ │ ├── cmp_driver.h
│ │ ├── crc_driver.h
│ │ ├── csec_driver.h
│ │ ├── edma_driver.h
│ │ ├── eim_driver.h
│ │ ├── enet_driver.h
│ │ ├── erm_driver.h
│ │ ├── ewm_driver.h
│ │ ├── flash_driver.h
│ │ ├── flash_mx25l6433f_driver.h
│ │ ├── flexcan_driver.h
│ │ ├── flexio.h
│ │ ├── flexio_i2c_driver.h
│ │ ├── flexio_i2s_driver.h
│ │ ├── flexio_spi_driver.h
│ │ ├── flexio_uart_driver.h
│ │ ├── ftm_common.h
│ │ ├── ftm_ic_driver.h
│ │ ├── ftm_mc_driver.h
│ │ ├── ftm_oc_driver.h
│ │ ├── ftm_pwm_driver.h
│ │ ├── ftm_qd_driver.h
│ │ ├── interrupt_manager.h
│ │ ├── lin_driver.h
│ │ ├── lpi2c_driver.h
│ │ ├── lpit_driver.h
│ │ ├── lpspi_master_driver.h
│ │ ├── lpspi_shared_function.h
│ │ ├── lpspi_slave_driver.h
│ │ ├── lptmr_driver.h
│ │ ├── lpuart_driver.h
│ │ ├── mpu_driver.h
│ │ ├── pdb_driver.h
│ │ ├── phy.h
│ │ ├── phy_generic.h
│ │ ├── phy_tja110x.h
│ │ ├── pins_driver.h
│ │ ├── power_manager.h
│ │ ├── quadspi_driver.h
│ │ ├── rtc_driver.h
│ │ ├── sai_driver.h
│ │ ├── trgmux_driver.h
│ │ └── wdog_driver.h
│ └── src
│ ├── adc
│ │ ├── adc_driver.c
│ │ ├── adc_hw_access.h
│ │ └── doxygen
│ │ └── adc_driver.dox
│ ├── clock
│ │ ├── S32K1xx
│ │ │ ├── clock_S32K1xx.c
│ │ │ ├── clock_S32K1xx.h
│ │ │ ├── doxygen
│ │ │ │ └── clock_S32K1xx.dox
│ │ │ ├── pcc_hw_access.h
│ │ │ ├── pmc_hw_access.h
│ │ │ ├── scg_hw_access.h
│ │ │ ├── sim_hw_access.h
│ │ │ └── smc_hw_access.h
│ │ ├── clock_manager.c
│ │ └── doxygen
│ │ └── clock_manager.dox
│ ├── cmp
│ │ ├── cmp_driver.c
│ │ ├── cmp_hw_access.c
│ │ ├── cmp_hw_access.h
│ │ └── doxygen
│ │ └── cmp_driver.dox
│ ├── crc
│ │ ├── crc_driver.c
│ │ ├── crc_hw_access.c
│ │ ├── crc_hw_access.h
│ │ └── doxygen
│ │ └── crc.dox
│ ├── csec
│ │ ├── csec_driver.c
│ │ ├── csec_hw_access.c
│ │ ├── csec_hw_access.h
│ │ └── doxygen
│ │ └── csec.dox
│ ├── edma
│ │ ├── doxygen
│ │ │ └── edma_driver.dox
│ │ ├── edma_driver.c
│ │ ├── edma_hw_access.c
│ │ ├── edma_hw_access.h
│ │ ├── edma_irq.c
│ │ └── edma_irq.h
│ ├── eim
│ │ ├── doxygen
│ │ │ └── eim_driver.dox
│ │ ├── eim_driver.c
│ │ ├── eim_hw_access.c
│ │ └── eim_hw_access.h
│ ├── enet
│ │ ├── doxygen
│ │ │ └── enet.dox
│ │ ├── enet_driver.c
│ │ ├── enet_hw_access.c
│ │ ├── enet_hw_access.h
│ │ └── enet_irq.c
│ ├── erm
│ │ ├── doxygen
│ │ │ └── erm.dox
│ │ ├── erm_driver.c
│ │ ├── erm_hw_access.c
│ │ └── erm_hw_access.h
│ ├── ewm
│ │ ├── doxygen
│ │ │ ├── ewm.dox
│ │ │ └── ewm_driver.dox
│ │ ├── ewm_driver.c
│ │ └── ewm_hw_access.h
│ ├── flash
│ │ ├── doxygen
│ │ │ └── flash_driver.dox
│ │ └── flash_driver.c
│ ├── flash_mx25l6433f
│ │ └── flash_mx25l6433f_driver.c
│ ├── flexcan
│ │ ├── doxygen
│ │ │ └── flexcan_driver.dox
│ │ ├── flexcan_driver.c
│ │ ├── flexcan_hw_access.c
│ │ ├── flexcan_hw_access.h
│ │ ├── flexcan_irq.c
│ │ └── flexcan_irq.h
│ ├── flexio
│ │ ├── doxygen
│ │ │ ├── flexio.dox
│ │ │ ├── flexio_driver.dox
│ │ │ ├── flexio_i2c_driver.dox
│ │ │ ├── flexio_i2s_driver.dox
│ │ │ ├── flexio_spi_driver.dox
│ │ │ └── flexio_uart_driver.dox
│ │ ├── flexio_common.c
│ │ ├── flexio_common.h
│ │ ├── flexio_hw_access.h
│ │ ├── flexio_i2c_driver.c
│ │ ├── flexio_i2s_driver.c
│ │ ├── flexio_spi_driver.c
│ │ └── flexio_uart_driver.c
│ ├── ftm
│ │ ├── doxygen
│ │ │ ├── ftm_driver.dox
│ │ │ ├── ftm_ic_driver.dox
│ │ │ ├── ftm_mc_driver.dox
│ │ │ ├── ftm_oc_driver.dox
│ │ │ ├── ftm_pwm_driver.dox
│ │ │ └── ftm_qd_driver.dox
│ │ ├── ftm_common.c
│ │ ├── ftm_hw_access.c
│ │ ├── ftm_hw_access.h
│ │ ├── ftm_ic_driver.c
│ │ ├── ftm_mc_driver.c
│ │ ├── ftm_oc_driver.c
│ │ ├── ftm_pwm_driver.c
│ │ └── ftm_qd_driver.c
│ ├── interrupt
│ │ ├── doxygen
│ │ │ └── interrupt.dox
│ │ ├── interrupt_manager.c
│ │ └── interrupt_manager.c.original
│ ├── iseled
│ │ └── readme.txt
│ ├── lin
│ │ ├── doxygen
│ │ │ └── lin.dox
│ │ ├── lin_common.c
│ │ ├── lin_driver.c
│ │ └── lin_irq.c
│ ├── lpi2c
│ │ ├── doxygen
│ │ │ ├── lpi2c.dox
│ │ │ └── lpi2c_driver.dox
│ │ ├── lpi2c_driver.c
│ │ ├── lpi2c_hw_access.c
│ │ ├── lpi2c_hw_access.h
│ │ └── lpi2c_irq.c
│ ├── lpit
│ │ ├── doxygen
│ │ │ ├── lpit.dox
│ │ │ └── lpit_driver.dox
│ │ ├── lpit_driver.c
│ │ └── lpit_hw_access.h
│ ├── lpspi
│ │ ├── doxygen
│ │ │ └── lpspi_driver.dox
│ │ ├── lpspi_hw_access.c
│ │ ├── lpspi_hw_access.h
│ │ ├── lpspi_irq.c
│ │ ├── lpspi_master_driver.c
│ │ ├── lpspi_shared_function.c
│ │ └── lpspi_slave_driver.c
│ ├── lptmr
│ │ ├── doxygen
│ │ │ ├── lptmr.dox
│ │ │ └── lptmr_driver.dox
│ │ ├── lptmr_driver.c
│ │ ├── lptmr_hw_access.c
│ │ └── lptmr_hw_access.h
│ ├── lpuart
│ │ ├── doxygen
│ │ │ └── lpuart_driver.dox
│ │ ├── lin_lpuart_driver.c
│ │ ├── lin_lpuart_driver.h
│ │ ├── lpuart_driver.c
│ │ ├── lpuart_hw_access.c
│ │ ├── lpuart_hw_access.h
│ │ ├── lpuart_irq.c
│ │ └── lpuart_irq.h
│ ├── mpu
│ │ ├── doxygen
│ │ │ └── mpu_driver.dox
│ │ ├── mpu_driver.c
│ │ ├── mpu_hw_access.c
│ │ └── mpu_hw_access.h
│ ├── pdb
│ │ ├── doxygen
│ │ │ ├── pdb.dox
│ │ │ └── pdb_driver.dox
│ │ ├── pdb_driver.c
│ │ ├── pdb_hw_access.c
│ │ └── pdb_hw_access.h
│ ├── phy
│ │ ├── doxygen
│ │ │ └── phy.dox
│ │ ├── phy.c
│ │ ├── phy_generic.c
│ │ └── phy_tja110x.c
│ ├── pins
│ │ ├── doxygen
│ │ │ └── pins.dox
│ │ ├── pins_driver.c
│ │ ├── pins_gpio_hw_access.h
│ │ ├── pins_port_hw_access.c
│ │ └── pins_port_hw_access.h
│ ├── power
│ │ ├── S32K1xx
│ │ │ ├── doxygen
│ │ │ │ └── power_manager_S32K1xx.dox
│ │ │ ├── power_manager_S32K1xx.c
│ │ │ ├── power_manager_S32K1xx.h
│ │ │ ├── power_pmc_hw_access.c
│ │ │ ├── power_pmc_hw_access.h
│ │ │ ├── power_rcm_hw_access.c
│ │ │ ├── power_rcm_hw_access.h
│ │ │ ├── power_smc_hw_access.c
│ │ │ └── power_smc_hw_access.h
│ │ ├── doxygen
│ │ │ └── power_manager.dox
│ │ └── power_manager.c
│ ├── quadspi
│ │ ├── quadspi_driver.c
│ │ └── quadspi_hw_access.h
│ ├── rtc
│ │ ├── doxygen
│ │ │ └── rtc_driver.dox
│ │ ├── rtc_driver.c
│ │ ├── rtc_hw_access.c
│ │ ├── rtc_hw_access.h
│ │ └── rtc_irq.c
│ ├── sai
│ │ ├── doxygen
│ │ │ └── sai.dox
│ │ ├── sai_driver.c
│ │ └── sai_hw_access.h
│ ├── trgmux
│ │ ├── doxygen
│ │ │ └── trgmux_driver.dox
│ │ ├── trgmux_driver.c
│ │ ├── trgmux_hw_access.c
│ │ └── trgmux_hw_access.h
│ └── wdog
│ ├── doxygen
│ │ └── wdog_driver.dox
│ ├── wdog_driver.c
│ ├── wdog_hw_access.c
│ └── wdog_hw_access.h
├── Mcu_Files
│ ├── BSW_ISR
│ │ ├── BSW_ISR.c
│ │ └── BSW_ISR.h
│ └── BSW_MCU
│ ├── BSW_MCU.c
│ └── BSW_MCU.h
├── Output
├── Stand_Header
│ ├── FreeRTOSConfig.h
│ ├── S32K144.h
│ ├── Type.h
│ ├── common.h
│ └── include.h
├── USER
│ ├── EventRecorderStub.scvd
│ ├── Listings
│ │ ├── S32K144_DEMO.map
│ │ └── startup_s32k144.lst
│ ├── S32K144_DEMO.uvguix.zhye
│ ├── S32K144_DEMO.uvoptx
│ ├── S32K144_DEMO.uvprojx
│ ├── cmsis_os2.h
│ ├── main.c
│ ├── main.h
│ ├── osif.h
│ ├── osif_baremetal.c
│ ├── pemicro_connection_settings.ini
│ └── 程序更新记录.txt
└── bf
├── S32K144.h
├── S32K144_features.h
├── clock_S32K1xx.c
└── clock_S32K1xx.h
108 directories, 330 files