实例介绍
收集的S32K1xx Bootloader文档和代码,支持UART和CAN两种方式
【实例截图】
【核心代码】
S32K1xxBootloader
└── S32K1xx Bootloader
├── AN12218 Bootloader.pdf
├── AN12218SW
│ ├── Bootloader interface
│ │ └── Java interface
│ │ ├── README.txt
│ │ ├── Serial_Bootloader_Interface.jar
│ │ ├── lib
│ │ │ └── comm.jar
│ │ └── win32com.dll
│ ├── Bootloader_Software
│ │ └── S32K148_bootloader
│ │ ├── Debug
│ │ │ ├── Project_Settings
│ │ │ │ ├── Linker_Files
│ │ │ │ │ └── subdir.mk
│ │ │ │ └── Startup_Code
│ │ │ │ ├── startup.args
│ │ │ │ ├── startup.d
│ │ │ │ ├── startup.o
│ │ │ │ ├── startup_S32K148.args
│ │ │ │ ├── startup_S32K148.o
│ │ │ │ ├── subdir.mk
│ │ │ │ ├── system_S32K148.args
│ │ │ │ ├── system_S32K148.d
│ │ │ │ └── system_S32K148.o
│ │ │ ├── S32K148_bootloader.args
│ │ │ ├── S32K148_bootloader.elf
│ │ │ ├── S32K148_bootloader.map
│ │ │ ├── makefile
│ │ │ ├── makefile.local
│ │ │ ├── objects.mk
│ │ │ ├── sources.mk
│ │ │ └── src
│ │ │ ├── drivers
│ │ │ │ ├── SPI.args
│ │ │ │ ├── clock.args
│ │ │ │ ├── clock.d
│ │ │ │ ├── clock.o
│ │ │ │ ├── comm.args
│ │ │ │ ├── comm.d
│ │ │ │ ├── comm.o
│ │ │ │ ├── flash.args
│ │ │ │ ├── fsl_flash_driver_c90tfs.args
│ │ │ │ ├── fsl_flash_driver_c90tfs.d
│ │ │ │ ├── fsl_flash_driver_c90tfs.o
│ │ │ │ ├── mem_man.args
│ │ │ │ ├── mem_man.d
│ │ │ │ ├── mem_man.o
│ │ │ │ ├── pin_config.args
│ │ │ │ ├── pin_config.d
│ │ │ │ ├── pin_config.o
│ │ │ │ ├── pit.args
│ │ │ │ ├── pit.d
│ │ │ │ ├── pit.o
│ │ │ │ ├── subdir.mk
│ │ │ │ ├── timeout.args
│ │ │ │ ├── timeout.d
│ │ │ │ ├── timeout.o
│ │ │ │ ├── uart.args
│ │ │ │ ├── uart.d
│ │ │ │ └── uart.o
│ │ │ ├── main.args
│ │ │ ├── main.d
│ │ │ ├── main.o
│ │ │ └── subdir.mk
│ │ ├── Project_Settings
│ │ │ ├── Debugger
│ │ │ │ ├── S32K148_bootloader_Debug.launch
│ │ │ │ ├── S32K148_bootloader_Debug_RAM.launch
│ │ │ │ └── S32K148_bootloader_Release.launch
│ │ │ ├── Linker_Files
│ │ │ │ ├── S32K1xx_flash.ld
│ │ │ │ └── S32K1xx_ram.ld
│ │ │ └── Startup_Code
│ │ │ ├── startup.c
│ │ │ ├── startup_S32K148.S
│ │ │ └── system_S32K148.c
│ │ ├── include
│ │ │ ├── S32K148.h
│ │ │ ├── S32K148_features.h
│ │ │ ├── devassert.h
│ │ │ ├── device_registers.h
│ │ │ ├── s32_core_cm4.h
│ │ │ ├── startup.h
│ │ │ └── system_S32K148.h
│ │ └── src
│ │ ├── drivers
│ │ │ ├── clock.c
│ │ │ ├── comm.c
│ │ │ ├── fsl_flash_driver_c90tfs.c
│ │ │ ├── inc
│ │ │ │ ├── clock.h
│ │ │ │ ├── comm.h
│ │ │ │ ├── common.h
│ │ │ │ ├── fsl_flash_driver_c90tfs.h
│ │ │ │ ├── mem_man.h
│ │ │ │ ├── pin_config.h
│ │ │ │ ├── pit.h
│ │ │ │ ├── timeout.h
│ │ │ │ └── uart.h
│ │ │ ├── mem_man.c
│ │ │ ├── pin_config.c
│ │ │ ├── pit.c
│ │ │ ├── timeout.c
│ │ │ └── uart.c
│ │ └── main.c
│ └── Example App
│ ├── Example_app
│ │ ├── Debug
│ │ │ ├── Example_app.args
│ │ │ ├── Example_app.elf
│ │ │ ├── Example_app.map
│ │ │ ├── Example_app.srec
│ │ │ ├── Project_Settings
│ │ │ │ ├── Linker_Files
│ │ │ │ │ └── subdir.mk
│ │ │ │ └── Startup_Code
│ │ │ │ ├── startup.args
│ │ │ │ ├── startup.d
│ │ │ │ ├── startup.o
│ │ │ │ ├── startup_S32K148.args
│ │ │ │ ├── startup_S32K148.o
│ │ │ │ ├── subdir.mk
│ │ │ │ ├── system_S32K148.args
│ │ │ │ ├── system_S32K148.d
│ │ │ │ └── system_S32K148.o
│ │ │ ├── makefile
│ │ │ ├── makefile.local
│ │ │ ├── objects.mk
│ │ │ ├── sources.mk
│ │ │ └── src
│ │ │ ├── main.args
│ │ │ ├── main.d
│ │ │ ├── main.o
│ │ │ └── subdir.mk
│ │ ├── Project_Settings
│ │ │ ├── Debugger
│ │ │ │ ├── Example_app_Debug.launch
│ │ │ │ ├── Example_app_Debug_RAM.launch
│ │ │ │ └── Example_app_Release.launch
│ │ │ ├── Linker_Files
│ │ │ │ ├── S32K1xx_flash.ld
│ │ │ │ └── S32K1xx_ram.ld
│ │ │ └── Startup_Code
│ │ │ ├── startup.c
│ │ │ ├── startup_S32K148.S
│ │ │ └── system_S32K148.c
│ │ ├── include
│ │ │ ├── S32K148.h
│ │ │ ├── S32K148_features.h
│ │ │ ├── devassert.h
│ │ │ ├── device_registers.h
│ │ │ ├── s32_core_cm4.h
│ │ │ ├── startup.h
│ │ │ └── system_S32K148.h
│ │ └── src
│ │ └── main.c
│ └── Example_app.srec
├── BOOT_4210a.png
├── Bootloader GUI Source Code
│ └── Boot_Loader_GUI 20151230
│ ├── Boot_Loader
│ │ ├── Boot_Loader.csproj
│ │ ├── Boot_Loader.csproj.user
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Form11.Designer.cs
│ │ ├── GlobalVars.cs
│ │ ├── NXP.ico
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Boot_Loader.exe
│ │ │ │ ├── Boot_Loader.pdb
│ │ │ │ ├── Boot_Loader.vshost.exe
│ │ │ │ ├── Boot_Loader.vshost.exe.manifest
│ │ │ │ └── boot log.txt
│ │ │ └── Release
│ │ │ ├── Boot_Loader.vshost.exe
│ │ │ └── Boot_Loader.vshost.exe.manifest
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── Boot_Code.Form1.resources
│ │ │ │ ├── Boot_Loader.Properties.Resources.resources
│ │ │ │ ├── Boot_Loader.csproj.FileListAbsolute.txt
│ │ │ │ ├── Boot_Loader.csproj.GenerateResource.Cache
│ │ │ │ ├── Boot_Loader.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Boot_Loader.exe
│ │ │ │ ├── Boot_Loader.pdb
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── TempPE
│ │ │ │ ├── Form11.Designer.cs.dll
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ └── Release
│ │ │ ├── Boot_Loader.csproj.FileListAbsolute.txt
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ │ ├── Form11.Designer.cs.dll
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── prog.cs
│ │ └── s19.cs
│ ├── Boot_Loader.sln
│ ├── Boot_Loader.v12.suo
│ ├── UpgradeLog.htm
│ └── readme.txt
├── CANbootloader.zip
├── S32K CAN FD Bootloader.pdf
└── S32K144_Bootloader
├── Debug
│ ├── Project_Settings
│ │ ├── Linker_Files
│ │ │ └── subdir.mk
│ │ └── Startup_Code
│ │ ├── startup.args
│ │ ├── startup.d
│ │ ├── startup.o
│ │ ├── startup_S32K144.args
│ │ ├── startup_S32K144.o
│ │ ├── subdir.mk
│ │ ├── system_S32K144.args
│ │ ├── system_S32K144.d
│ │ └── system_S32K144.o
│ ├── S32K144_EVB_Hello.args
│ ├── S32K144_EVB_Hello.elf
│ ├── S32K144_EVB_Hello.map
│ ├── S32K144_EVB_Hello.srec
│ ├── makefile
│ ├── makefile.local
│ ├── objects.mk
│ ├── platform
│ │ ├── drivers
│ │ │ └── src
│ │ │ ├── flash
│ │ │ │ ├── fsl_flash_driver_c90tfs.args
│ │ │ │ ├── fsl_flash_driver_c90tfs.d
│ │ │ │ ├── fsl_flash_driver_c90tfs.o
│ │ │ │ └── subdir.mk
│ │ │ └── lpuart
│ │ │ ├── fsl_lpuart_common.args
│ │ │ ├── fsl_lpuart_common.d
│ │ │ ├── fsl_lpuart_common.o
│ │ │ ├── fsl_lpuart_driver.args
│ │ │ ├── fsl_lpuart_driver.d
│ │ │ ├── fsl_lpuart_driver.o
│ │ │ ├── fsl_lpuart_irq.args
│ │ │ ├── fsl_lpuart_irq.d
│ │ │ ├── fsl_lpuart_irq.o
│ │ │ └── subdir.mk
│ │ ├── hal
│ │ │ └── src
│ │ │ ├── lpuart
│ │ │ │ ├── fsl_lpuart_hal.args
│ │ │ │ ├── fsl_lpuart_hal.d
│ │ │ │ ├── fsl_lpuart_hal.o
│ │ │ │ └── subdir.mk
│ │ │ ├── pcc
│ │ │ │ ├── fsl_pcc_hal.args
│ │ │ │ ├── fsl_pcc_hal.d
│ │ │ │ ├── fsl_pcc_hal.o
│ │ │ │ └── subdir.mk
│ │ │ ├── port
│ │ │ │ ├── fsl_port_hal.args
│ │ │ │ ├── fsl_port_hal.d
│ │ │ │ ├── fsl_port_hal.o
│ │ │ │ └── subdir.mk
│ │ │ ├── scg
│ │ │ │ ├── fsl_scg_hal.args
│ │ │ │ ├── fsl_scg_hal.d
│ │ │ │ ├── fsl_scg_hal.o
│ │ │ │ └── subdir.mk
│ │ │ └── sim
│ │ │ └── S32K144
│ │ │ ├── fsl_sim_hal_S32K144.args
│ │ │ ├── fsl_sim_hal_S32K144.d
│ │ │ ├── fsl_sim_hal_S32K144.o
│ │ │ └── subdir.mk
│ │ └── system
│ │ └── src
│ │ ├── clock
│ │ │ ├── S32K144
│ │ │ │ ├── fsl_clock_S32K144.args
│ │ │ │ ├── fsl_clock_S32K144.d
│ │ │ │ ├── fsl_clock_S32K144.o
│ │ │ │ └── subdir.mk
│ │ │ ├── fsl_clock_manager.args
│ │ │ ├── fsl_clock_manager.d
│ │ │ ├── fsl_clock_manager.o
│ │ │ ├── fsl_clock_manager_common.args
│ │ │ ├── fsl_clock_manager_common.d
│ │ │ ├── fsl_clock_manager_common.o
│ │ │ └── subdir.mk
│ │ └── interrupt
│ │ ├── fsl_interrupt_manager.args
│ │ ├── fsl_interrupt_manager.d
│ │ ├── fsl_interrupt_manager.o
│ │ └── subdir.mk
│ ├── sources.mk
│ └── src
│ ├── io.args
│ ├── io.d
│ ├── io.o
│ ├── main.args
│ ├── main.d
│ ├── main.o
│ ├── printf.args
│ ├── printf.d
│ ├── printf.o
│ └── subdir.mk
├── 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
│ │ │ └── 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
100 directories, 291 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论