嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
NXP S32K144学习系列3---基于FreeRTOS实例
.
├── NXP S32K144学习系列3---基于FreeRTOS实例_s32k144_Demo_Freertos.zip
└── s32k144_Demo_Freertos
├── Debug_FLASH
│ ├── Generated_Code
│ │ ├── Cpu.args
│ │ └── subdir.mk
│ ├── Project_Settings
│ │ └── Startup_Code
│ │ ├── startup_S32K144.args
│ │ └── subdir.mk
│ ├── SDK
│ │ ├── platform
│ │ │ ├── devices
│ │ │ │ ├── S32K144
│ │ │ │ │ └── startup
│ │ │ │ │ ├── subdir.mk
│ │ │ │ │ └── system_S32K144.args
│ │ │ │ ├── startup.args
│ │ │ │ └── subdir.mk
│ │ │ ├── drivers
│ │ │ │ └── src
│ │ │ │ ├── clock
│ │ │ │ │ └── S32K1xx
│ │ │ │ │ ├── clock_S32K1xx.args
│ │ │ │ │ └── subdir.mk
│ │ │ │ ├── edma
│ │ │ │ │ ├── edma_driver.args
│ │ │ │ │ └── subdir.mk
│ │ │ │ ├── interrupt
│ │ │ │ │ ├── interrupt_manager.args
│ │ │ │ │ └── subdir.mk
│ │ │ │ ├── lpspi
│ │ │ │ │ ├── lpspi_hw_access.args
│ │ │ │ │ └── subdir.mk
│ │ │ │ ├── lpuart
│ │ │ │ │ ├── lpuart_driver.args
│ │ │ │ │ └── subdir.mk
│ │ │ │ └── pins
│ │ │ │ ├── pins_driver.args
│ │ │ │ └── subdir.mk
│ │ │ └── pal
│ │ │ └── src
│ │ │ └── spi
│ │ │ ├── spi_pal.args
│ │ │ └── subdir.mk
│ │ └── rtos
│ │ ├── FreeRTOS_S32K
│ │ │ └── Source
│ │ │ ├── croutine.args
│ │ │ ├── portable
│ │ │ │ ├── GCC
│ │ │ │ │ └── ARM_CM4F
│ │ │ │ │ ├── port.args
│ │ │ │ │ └── subdir.mk
│ │ │ │ └── MemMang
│ │ │ │ ├── heap_2.args
│ │ │ │ └── subdir.mk
│ │ │ └── subdir.mk
│ │ └── osif
│ │ ├── osif_freertos.args
│ │ └── subdir.mk
│ ├── Sources
│ │ ├── delay.args
│ │ └── subdir.mk
│ ├── makefile
│ ├── objects.mk
│ ├── s32k144_Demo_Freertos_02.args
│ ├── s32k144_Demo_Freertos_02.elf
│ └── sources.mk
├── Documentation
│ ├── s32k144_Demo_Base_01_Settings.previous.xml
│ ├── s32k144_Demo_Freertos_02.txt
│ ├── s32k144_Demo_Freertos_02_Settings.previous.xml
│ └── s32k144_Demo_Freertos_02_Settings.xml
├── Generated_Code
│ ├── Cpu.c
│ ├── Cpu.h
│ ├── FreeRTOSConfig.h
│ ├── clockMan1.c
│ ├── clockMan1.h
│ ├── dmaController1.c
│ ├── dmaController1.h
│ ├── lpuart1.c
│ ├── lpuart1.h
│ ├── pin_mux.c
│ ├── pin_mux.h
│ ├── spi1.c
│ ├── spi1.h
│ └── spi_pal_cfg.h
├── Linker_Files.bak
├── ProcessorExpert.pe
├── Project_Settings
│ ├── Debugger
│ │ ├── s32k144_Demo_Freertos_02_Debug_FLASH_PNE.launch
│ │ ├── s32k144_Demo_Freertos_02_Debug_RAM_PNE.launch
│ │ ├── s32k144_Demo_Freertos_02_Release_FLASH_PNE.launch
│ │ └── s32k144_Demo_Freertos_02_Release_RAM_PNE.launch
│ ├── Linker_Files
│ │ ├── S32K144_64_flash.ld
│ │ └── S32K144_64_ram.ld
│ └── Startup_Code
│ └── startup_S32K144.S
├── SDK
│ ├── platform
│ │ ├── devices
│ │ │ ├── S32K144
│ │ │ │ ├── include
│ │ │ │ │ ├── S32K144.h
│ │ │ │ │ └── S32K144_features.h
│ │ │ │ └── startup
│ │ │ │ ├── system_S32K144.c
│ │ │ │ └── system_S32K144.h
│ │ │ ├── callbacks.h
│ │ │ ├── common
│ │ │ │ └── s32_core_cm4.h
│ │ │ ├── devassert.h
│ │ │ ├── device_registers.h
│ │ │ ├── startup.c
│ │ │ ├── startup.h
│ │ │ └── status.h
│ │ ├── drivers
│ │ │ ├── inc
│ │ │ │ ├── clock.h
│ │ │ │ ├── clock_manager.h
│ │ │ │ ├── edma_driver.h
│ │ │ │ ├── interrupt_manager.h
│ │ │ │ ├── lpspi_master_driver.h
│ │ │ │ ├── lpspi_shared_function.h
│ │ │ │ ├── lpspi_slave_driver.h
│ │ │ │ ├── lpuart_driver.h
│ │ │ │ └── pins_driver.h
│ │ │ └── src
│ │ │ ├── clock
│ │ │ │ └── S32K1xx
│ │ │ │ ├── clock_S32K1xx.c
│ │ │ │ ├── clock_S32K1xx.h
│ │ │ │ ├── pcc_hw_access.h
│ │ │ │ ├── pmc_hw_access.h
│ │ │ │ ├── scg_hw_access.h
│ │ │ │ ├── sim_hw_access.h
│ │ │ │ └── smc_hw_access.h
│ │ │ ├── edma
│ │ │ │ ├── edma_driver.c
│ │ │ │ ├── edma_hw_access.c
│ │ │ │ ├── edma_hw_access.h
│ │ │ │ ├── edma_irq.c
│ │ │ │ └── edma_irq.h
│ │ │ ├── interrupt
│ │ │ │ └── interrupt_manager.c
│ │ │ ├── lpspi
│ │ │ │ ├── lpspi_hw_access.c
│ │ │ │ ├── lpspi_hw_access.h
│ │ │ │ ├── lpspi_irq.c
│ │ │ │ ├── lpspi_master_driver.c
│ │ │ │ ├── lpspi_shared_function.c
│ │ │ │ └── lpspi_slave_driver.c
│ │ │ ├── lpuart
│ │ │ │ ├── lpuart_driver.c
│ │ │ │ ├── lpuart_hw_access.c
│ │ │ │ ├── lpuart_hw_access.h
│ │ │ │ ├── lpuart_irq.c
│ │ │ │ └── lpuart_irq.h
│ │ │ └── pins
│ │ │ ├── pins_driver.c
│ │ │ ├── pins_gpio_hw_access.h
│ │ │ ├── pins_port_hw_access.c
│ │ │ └── pins_port_hw_access.h
│ │ └── pal
│ │ ├── inc
│ │ │ ├── spi_pal.h
│ │ │ └── spi_pal_mapping.h
│ │ └── src
│ │ └── spi
│ │ └── spi_pal.c
│ └── rtos
│ ├── FreeRTOS_S32K
│ │ └── Source
│ │ ├── 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
│ │ │ ├── stream_buffer.h
│ │ │ ├── task.h
│ │ │ └── timers.h
│ │ ├── list.c
│ │ ├── portable
│ │ │ ├── GCC
│ │ │ │ └── ARM_CM4F
│ │ │ │ ├── port.c
│ │ │ │ └── portmacro.h
│ │ │ └── MemMang
│ │ │ └── heap_2.c
│ │ ├── queue.c
│ │ ├── stream_buffer.c
│ │ ├── tasks.c
│ │ └── timers.c
│ └── osif
│ ├── osif.h
│ └── osif_freertos.c
├── Sources
│ ├── delay.c
│ ├── key.c
│ ├── main.c
│ ├── rtos.c
│ ├── sys_cfg.c
│ └── uart.c
├── Startup_Code.bak
├── include
│ ├── delay.h
│ ├── key.h
│ ├── rtos.h
│ ├── sys_cfg.h
│ └── uart.h
├── include.bak
├── src
└── src.bak
74 directories, 155 files