嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 8 元微信扫码支付:8 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
S32k144的Bootloader软件
S32K144_Bootloader
├── Debug
├── Project_Settings
│ ├── Debugger
│ │ └── S32K144_EVB_Hello_Debug.launch
│ ├── Linker_Files
│ │ ├── S32K144_100_ram.ld
│ │ └── S32K1xx_flash.ld
│ └── Startup_Code
│ ├── startup.c
│ ├── startup_S32K144.S
│ └── system_S32K144.c
├── platform
│ ├── devices
│ │ ├── S32K144
│ │ │ ├── include
│ │ │ │ ├── Platform_Types.h
│ │ │ │ ├── S32K144.h
│ │ │ │ ├── S32K144_extension.h
│ │ │ │ ├── S32K144_features.h
│ │ │ │ └── fsl_bitaccess.h
│ │ │ └── startup
│ │ │ ├── gcc
│ │ │ └── system_S32K144.h
│ │ ├── fsl_device_registers.h
│ │ └── startup.h
│ ├── drivers
│ │ ├── inc
│ │ │ ├── fsl_flash_driver_c90tfs.h
│ │ │ └── fsl_lpuart_driver.h
│ │ └── src
│ │ ├── flash
│ │ │ └── fsl_flash_driver_c90tfs.c
│ │ └── lpuart
│ │ ├── fsl_lpuart_common.c
│ │ ├── fsl_lpuart_driver.c
│ │ └── fsl_lpuart_irq.c
│ ├── hal
│ │ ├── inc
│ │ │ ├── fsl_gpio_hal.h
│ │ │ ├── fsl_lpuart_hal.h
│ │ │ ├── fsl_pcc_hal.h
│ │ │ ├── fsl_port_hal.h
│ │ │ ├── fsl_scg_hal.h
│ │ │ └── fsl_sim_hal.h
│ │ └── src
│ │ ├── lpuart
│ │ │ └── fsl_lpuart_hal.c
│ │ ├── pcc
│ │ │ └── fsl_pcc_hal.c
│ │ ├── port
│ │ │ └── fsl_port_hal.c
│ │ ├── scg
│ │ │ └── fsl_scg_hal.c
│ │ └── sim
│ │ └── S32K144
│ │ ├── fsl_sim_hal_S32K144.c
│ │ └── fsl_sim_hal_S32K144.h
│ └── system
│ ├── inc
│ │ ├── fsl_clock_manager.h
│ │ └── fsl_interrupt_manager.h
│ └── src
│ ├── clock
│ │ ├── S32K144
│ │ │ ├── fsl_clock_S32K144.c
│ │ │ └── fsl_clock_S32K144.h
│ │ ├── fsl_clock_manager.c
│ │ └── fsl_clock_manager_common.c
│ └── interrupt
│ └── fsl_interrupt_manager.c
└── src
├── io.c
├── io.h
├── main.c
├── printf.c
└── stdlib.h
32 directories, 44 files