实例介绍
基于S32K144的CANbootloader.自己实现的s32k144库函数和IAP(CAN)功能. 目录中包含自己编写的CANbootloader上位机,CANbootloader工程文件和APP工程测试文件.
【实例截图】
【核心代码】
4744300845220919513.rar
└── CANbootloader
├── CAN上位机相关
│ ├── CAN上位机
│ │ ├── CANtestDemo.exe
│ │ ├── CANtestDemo.pdb
│ │ ├── CANtestDemo.xml
│ │ ├── ControlCAN.dll
│ │ ├── Interop.VBA.dll
│ │ ├── Interop.VBRUN.dll
│ │ ├── kerneldlls
│ │ │ ├── CAN232.dll
│ │ │ ├── CANETE.dll
│ │ │ ├── CANET_TCP.dll
│ │ │ ├── gisadll.dll
│ │ │ ├── gpcidll.dll
│ │ │ ├── isa5420.dll
│ │ │ ├── kerneldll.ini
│ │ │ ├── PC104C2.dll
│ │ │ ├── PC104CAN.dll
│ │ │ ├── PCI5121.dll
│ │ │ └── usbcan.dll
│ │ ├── test.bin
│ │ └── 使用说明.txt
│ └── CAN上位机源码
│ ├── cantest
│ │ ├── AssemblyInfo.vb
│ │ ├── bin
│ │ │ └── x86
│ │ │ ├── Debug
│ │ │ │ ├── CANtestDemo.exe
│ │ │ │ ├── CANtestDemo.pdb
│ │ │ │ ├── CANtestDemo.xml
│ │ │ │ ├── ControlCAN.dll
│ │ │ │ ├── filetest2.bin
│ │ │ │ ├── filetest.txt
│ │ │ │ ├── hello_world_s32k144.bin
│ │ │ │ ├── hello_world_s32k144.srec
│ │ │ │ ├── Interop.VBA.dll
│ │ │ │ ├── Interop.VBRUN.dll
│ │ │ │ ├── kerneldlls
│ │ │ │ │ ├── CAN232.dll
│ │ │ │ │ ├── CANETE.dll
│ │ │ │ │ ├── CANET_TCP.dll
│ │ │ │ │ ├── gisadll.dll
│ │ │ │ │ ├── gpcidll.dll
│ │ │ │ │ ├── isa5420.dll
│ │ │ │ │ ├── kerneldll.ini
│ │ │ │ │ ├── PC104C2.dll
│ │ │ │ │ ├── PC104CAN.dll
│ │ │ │ │ ├── PCI5121.dll
│ │ │ │ │ └── usbcan.dll
│ │ │ │ ├── test1.bin
│ │ │ │ ├── test2.bin
│ │ │ │ └── test.bin
│ │ │ └── Release
│ │ ├── ControlCAN.dll
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── kerneldlls
│ │ │ ├── CAN232.dll
│ │ │ ├── CANETE.dll
│ │ │ ├── CANET_TCP.dll
│ │ │ ├── gisadll.dll
│ │ │ ├── gpcidll.dll
│ │ │ ├── isa5420.dll
│ │ │ ├── kerneldll.ini
│ │ │ ├── PC104C2.dll
│ │ │ ├── PC104CAN.dll
│ │ │ ├── PCI5121.dll
│ │ │ └── usbcan.dll
│ │ ├── Module1.bas
│ │ ├── Module1.vb
│ │ ├── My Project
│ │ ├── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Interop.MSDATASRC.dll
│ │ │ ├── Interop.VBA.dll
│ │ │ ├── Interop.VBRUN.dll
│ │ │ ├── TempPE
│ │ │ ├── test.vbprojAssemblyReference.cache
│ │ │ ├── test.vbproj.CoreCompileInputs.cache
│ │ │ └── test.vbproj.ResolveComReference.cache
│ │ ├── test.vbproj
│ │ └── test.vbproj.user
│ ├── test.sln
│ └── test.suo
├── readme.docx
└── 工程源码
├── MY_S32K144_4.4
│ └── MY_S32K144
│ ├── Debug
│ │ ├── makefile
│ │ ├── makefile.local
│ │ ├── MY_S32K144.args
│ │ ├── MY_S32K144.bin
│ │ ├── MY_S32K144.elf
│ │ ├── MY_S32K144.map
│ │ ├── MY_S32K144.srec
│ │ ├── objects.mk
│ │ ├── 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
│ │ ├── sources.mk
│ │ └── src
│ │ ├── adc
│ │ │ ├── adc.args
│ │ │ ├── adc.d
│ │ │ ├── adc.o
│ │ │ └── subdir.mk
│ │ ├── can
│ │ │ ├── can.args
│ │ │ ├── can.d
│ │ │ ├── can.o
│ │ │ └── subdir.mk
│ │ ├── clock
│ │ │ ├── clock.args
│ │ │ ├── clock.d
│ │ │ ├── clock.o
│ │ │ └── subdir.mk
│ │ ├── flash
│ │ │ ├── flash.args
│ │ │ ├── flash.d
│ │ │ ├── flash.o
│ │ │ └── subdir.mk
│ │ ├── ftm
│ │ │ ├── ftm.args
│ │ │ ├── ftm.d
│ │ │ ├── ftm.o
│ │ │ └── subdir.mk
│ │ ├── gpio
│ │ │ ├── gpio.args
│ │ │ ├── gpio.d
│ │ │ ├── gpio.o
│ │ │ └── subdir.mk
│ │ ├── IAP
│ │ │ ├── iap.args
│ │ │ ├── iap.d
│ │ │ ├── iap_main.args
│ │ │ ├── iap.o
│ │ │ └── subdir.mk
│ │ ├── lpit
│ │ │ ├── lpit.args
│ │ │ └── subdir.mk
│ │ ├── main.args
│ │ ├── main.d
│ │ ├── main.o
│ │ ├── moudle example
│ │ │ ├── uart
│ │ │ │ ├── main.args
│ │ │ │ ├── main.d
│ │ │ │ ├── main.o
│ │ │ │ └── subdir.mk
│ │ │ └── wdog
│ │ │ ├── main.args
│ │ │ ├── main.d
│ │ │ ├── main.o
│ │ │ └── subdir.mk
│ │ ├── nvic
│ │ │ ├── nvic.args
│ │ │ ├── nvic.d
│ │ │ ├── nvic.o
│ │ │ └── subdir.mk
│ │ ├── pdb
│ │ │ ├── pdb.args
│ │ │ ├── pdb.d
│ │ │ ├── pdb.o
│ │ │ └── subdir.mk
│ │ ├── pit
│ │ │ ├── pit.args
│ │ │ ├── pit.d
│ │ │ ├── pit.o
│ │ │ └── subdir.mk
│ │ ├── subdir.mk
│ │ ├── uart
│ │ │ ├── LPUART.args
│ │ │ ├── subdir.mk
│ │ │ ├── uart.args
│ │ │ ├── uart.d
│ │ │ └── uart.o
│ │ └── wdog
│ │ ├── subdir.mk
│ │ ├── wdog.args
│ │ ├── wdog.d
│ │ └── wdog.o
│ ├── Debug_RAM
│ │ ├── makefile
│ │ ├── makefile.local
│ │ ├── MY_S32K144.args
│ │ ├── objects.mk
│ │ ├── 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
│ │ ├── sources.mk
│ │ └── src
│ │ ├── adc
│ │ │ ├── adc.args
│ │ │ └── subdir.mk
│ │ ├── can
│ │ │ ├── can.args
│ │ │ └── subdir.mk
│ │ ├── clock
│ │ │ ├── clock.args
│ │ │ ├── clock.d
│ │ │ ├── clock.o
│ │ │ └── subdir.mk
│ │ ├── flash
│ │ │ ├── flash.args
│ │ │ └── subdir.mk
│ │ ├── ftm
│ │ │ ├── ftm.args
│ │ │ └── subdir.mk
│ │ ├── gpio
│ │ │ ├── gpio.args
│ │ │ └── subdir.mk
│ │ ├── lpit
│ │ │ ├── lpit.args
│ │ │ └── subdir.mk
│ │ ├── main.args
│ │ ├── nvic
│ │ │ ├── nvic.args
│ │ │ └── subdir.mk
│ │ ├── pdb
│ │ │ ├── pdb.args
│ │ │ └── subdir.mk
│ │ ├── subdir.mk
│ │ ├── uart
│ │ │ ├── LPUART.args
│ │ │ └── subdir.mk
│ │ └── wdog
│ │ ├── subdir.mk
│ │ └── wdog.args
│ ├── include
│ │ ├── devassert.h
│ │ ├── device_registers.h
│ │ ├── s32_core_cm4.h
│ │ ├── S32K144_features.h
│ │ ├── S32K144.h
│ │ ├── startup.h
│ │ └── system_S32K144.h
│ ├── moudle_example
│ │ ├── adc
│ │ │ └── main.c
│ │ ├── can
│ │ │ └── main.c
│ │ ├── eeprom
│ │ │ └── main.c
│ │ ├── flash
│ │ │ └── main.c
│ │ ├── ftm
│ │ │ └── main.c
│ │ ├── gpio
│ │ │ └── main.c
│ │ ├── pit
│ │ │ └── main.c
│ │ ├── uart
│ │ │ └── main.c
│ │ └── wdog
│ │ └── main.c
│ ├── moudle_example.rar
│ ├── Project_Settings
│ │ ├── Debugger
│ │ │ ├── MY_S32K144_Debug.launch
│ │ │ ├── MY_S32K144_Debug_RAM.launch
│ │ │ └── MY_S32K144_Release.launch
│ │ ├── Linker_Files
│ │ │ ├── S32K1xx_flash.ld
│ │ │ └── S32K1xx_ram.ld
│ │ └── Startup_Code
│ │ ├── startup.c
│ │ ├── startup_S32K144.S
│ │ └── system_S32K144.c
│ ├── Release
│ │ ├── makefile
│ │ ├── makefile.local
│ │ ├── MY_S32K144.args
│ │ ├── objects.mk
│ │ ├── 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
│ │ ├── sources.mk
│ │ └── src
│ │ ├── adc
│ │ │ ├── adc.args
│ │ │ └── subdir.mk
│ │ ├── can
│ │ │ ├── can.args
│ │ │ └── subdir.mk
│ │ ├── clock
│ │ │ ├── clock.args
│ │ │ ├── clock.d
│ │ │ ├── clock.o
│ │ │ └── subdir.mk
│ │ ├── flash
│ │ │ ├── flash.args
│ │ │ └── subdir.mk
│ │ ├── ftm
│ │ │ ├── ftm.args
│ │ │ └── subdir.mk
│ │ ├── gpio
│ │ │ ├── gpio.args
│ │ │ └── subdir.mk
│ │ ├── IAP
│ │ │ ├── iap.args
│ │ │ └── subdir.mk
│ │ ├── main.args
│ │ ├── nvic
│ │ │ ├── nvic.args
│ │ │ └── subdir.mk
│ │ ├── pdb
│ │ │ ├── pdb.args
│ │ │ └── subdir.mk
│ │ ├── pit
│ │ │ ├── pit.args
│ │ │ └── subdir.mk
│ │ ├── subdir.mk
│ │ ├── uart
│ │ │ ├── subdir.mk
│ │ │ └── uart.args
│ │ └── wdog
│ │ ├── subdir.mk
│ │ └── wdog.args
│ └── src
│ ├── adc
│ │ ├── adc.c
│ │ └── adc.h
│ ├── can
│ │ ├── can.c
│ │ └── can.h
│ ├── clock
│ │ ├── clock.c
│ │ └── clock.h
│ ├── flash
│ │ ├── flash.c
│ │ └── flash.h
│ ├── ftm
│ │ ├── ftm.c
│ │ └── ftm.h
│ ├── gpio
│ │ ├── gpio.c
│ │ └── gpio.h
│ ├── IAP
│ │ ├── iap.c
│ │ └── iap.h
│ ├── main.c
│ ├── nvic
│ │ ├── nvic.c
│ │ └── nvic.h
│ ├── pdb
│ │ ├── pdb.c
│ │ └── pdb.h
│ ├── pit
│ │ ├── pit.c
│ │ └── pit.h
│ ├── uart
│ │ ├── uart.c
│ │ └── uart.h
│ └── wdog
│ ├── wdog.c
│ └── wdog.h
└── test
├── Debug
│ ├── makefile
│ ├── makefile.local
│ ├── objects.mk
│ ├── 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
│ ├── sources.mk
│ ├── src
│ │ ├── adc
│ │ │ ├── adc.args
│ │ │ ├── adc.d
│ │ │ ├── adc.o
│ │ │ └── subdir.mk
│ │ ├── can
│ │ │ ├── can.args
│ │ │ ├── can.d
│ │ │ ├── can.o
│ │ │ └── subdir.mk
│ │ ├── clock
│ │ │ ├── clock.args
│ │ │ ├── clock.d
│ │ │ ├── clock.o
│ │ │ └── subdir.mk
│ │ ├── flash
│ │ │ ├── flash.args
│ │ │ ├── flash.d
│ │ │ ├── flash.o
│ │ │ └── subdir.mk
│ │ ├── ftm
│ │ │ ├── ftm.args
│ │ │ ├── ftm.d
│ │ │ ├── ftm.o
│ │ │ └── subdir.mk
│ │ ├── gpio
│ │ │ ├── gpio.args
│ │ │ ├── gpio.d
│ │ │ ├── gpio.o
│ │ │ └── subdir.mk
│ │ ├── main.args
│ │ ├── main.d
│ │ ├── main.o
│ │ ├── nvic
│ │ │ ├── nvic.args
│ │ │ ├── nvic.d
│ │ │ ├── nvic.o
│ │ │ └── subdir.mk
│ │ ├── pit
│ │ │ ├── pit.args
│ │ │ ├── pit.d
│ │ │ ├── pit.o
│ │ │ └── subdir.mk
│ │ ├── subdir.mk
│ │ ├── uart
│ │ │ ├── subdir.mk
│ │ │ ├── uart.args
│ │ │ ├── uart.d
│ │ │ └── uart.o
│ │ └── wdog
│ │ ├── subdir.mk
│ │ ├── wdog.args
│ │ ├── wdog.d
│ │ └── wdog.o
│ ├── sscom.ini
│ ├── test.args
│ ├── test.bin
│ ├── test.elf
│ └── test.map
├── include
│ ├── devassert.h
│ ├── device_registers.h
│ ├── s32_core_cm4.h
│ ├── S32K144_features.h
│ ├── S32K144.h
│ ├── startup.h
│ └── system_S32K144.h
├── Project_Settings
│ ├── Debugger
│ │ ├── test_Debug.launch
│ │ ├── test_Debug_RAM.launch
│ │ └── test_Release.launch
│ ├── Linker_Files
│ │ ├── S32K1xx_flash.ld
│ │ └── S32K1xx_ram.ld
│ └── Startup_Code
│ ├── startup.c
│ ├── startup_S32K144.S
│ └── system_S32K144.c
├── Release
│ ├── makefile
│ ├── makefile.local
│ ├── objects.mk
│ ├── 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
│ ├── sources.mk
│ ├── src
│ │ ├── adc
│ │ │ ├── adc.args
│ │ │ └── subdir.mk
│ │ ├── can
│ │ │ ├── can.args
│ │ │ └── subdir.mk
│ │ ├── clock
│ │ │ ├── clock.args
│ │ │ ├── clock.d
│ │ │ ├── clock.o
│ │ │ └── subdir.mk
│ │ ├── flash
│ │ │ ├── flash.args
│ │ │ └── subdir.mk
│ │ ├── ftm
│ │ │ ├── ftm.args
│ │ │ └── subdir.mk
│ │ ├── gpio
│ │ │ ├── gpio.args
│ │ │ └── subdir.mk
│ │ ├── main.args
│ │ ├── nvic
│ │ │ ├── nvic.args
│ │ │ └── subdir.mk
│ │ ├── pit
│ │ │ ├── pit.args
│ │ │ └── subdir.mk
│ │ ├── subdir.mk
│ │ ├── uart
│ │ │ ├── subdir.mk
│ │ │ └── uart.args
│ │ └── wdog
│ │ ├── subdir.mk
│ │ └── wdog.args
│ └── test.args
└── src
├── adc
│ ├── adc.c
│ └── adc.h
├── can
│ ├── can.c
│ └── can.h
├── clock
│ ├── clock.c
│ └── clock.h
├── flash
│ ├── flash.c
│ └── flash.h
├── ftm
│ ├── ftm.c
│ └── ftm.h
├── gpio
│ ├── gpio.c
│ └── gpio.h
├── main.c
├── nvic
│ ├── nvic.c
│ └── nvic.h
├── pit
│ ├── pit.c
│ └── pit.h
├── uart
│ ├── uart.c
│ └── uart.h
└── wdog
├── wdog.c
└── wdog.h
149 directories, 428 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论