实例介绍
采用快速开发原型建模,包括硬件驱动,CAN接收发送,串口发送,定时器,及应用层代码
【实例截图】
【核心代码】
VCU自动代码生成
└── VCU 自动代码生成
├── ecucoder
│ └── workspaceS32DS.Power
│ ├── Enabled
│ │ ├── include
│ │ │ ├── adc.h
│ │ │ ├── can.h
│ │ │ ├── ccp.h
│ │ │ ├── ccppar.h
│ │ │ ├── cpu.h
│ │ │ ├── derivative.h
│ │ │ ├── etimer.h
│ │ │ ├── fccu.h
│ │ │ ├── flash.h
│ │ │ ├── gpio.h
│ │ │ ├── lin.h
│ │ │ ├── mcp2515.h
│ │ │ ├── MPC5744P.h
│ │ │ ├── pit.h
│ │ │ ├── pwm.h
│ │ │ ├── rtwtypes.h
│ │ │ ├── siu.h
│ │ │ ├── spi.h
│ │ │ ├── ssd_c55.h
│ │ │ ├── ssd_c55_internal.h
│ │ │ ├── ssd_types.h
│ │ │ ├── Std_Types.h
│ │ │ └── typedefs.h
│ │ ├── Project_Settings
│ │ │ ├── Debugger
│ │ │ │ └── ECUCoderDemoPro1_Debug.launch
│ │ │ ├── Linker_Files
│ │ │ │ ├── libs.ld
│ │ │ │ ├── mem.ld
│ │ │ │ └── sections.ld
│ │ │ └── Startup_Code
│ │ │ └── startup.S
│ │ └── src
│ │ ├── adc.c
│ │ ├── can_ccp.c
│ │ ├── can_hook.c
│ │ ├── ccp.c
│ │ ├── Enabled.c
│ │ ├── etimer.c
│ │ ├── fccu.c
│ │ ├── flash.c
│ │ ├── flashrchw.c
│ │ ├── gpio.c
│ │ ├── intc_sw_handlers.S
│ │ ├── intc_SW_mode_isr_vectors_MPC5744P.c
│ │ ├── mcp2515.c
│ │ ├── MPC57xx__Interrupt_Init.c
│ │ ├── pit.c
│ │ ├── pwm.c
│ │ └── Vector.c
│ ├── M1AEVmodel
│ │ └── CANR
│ │ └── CANR
│ │ └── RVM_2Received
│ │ ├── include
│ │ │ ├── adc.h
│ │ │ ├── can.h
│ │ │ ├── ccp.h
│ │ │ ├── ccppar.h
│ │ │ ├── cpu.h
│ │ │ ├── derivative.h
│ │ │ ├── etimer.h
│ │ │ ├── fccu.h
│ │ │ ├── flash.h
│ │ │ ├── gpio.h
│ │ │ ├── lin.h
│ │ │ ├── mcp2515.h
│ │ │ ├── MPC5744P.h
│ │ │ ├── pit.h
│ │ │ ├── pwm.h
│ │ │ ├── rtwtypes.h
│ │ │ ├── siu.h
│ │ │ ├── spi.h
│ │ │ ├── ssd_c55.h
│ │ │ ├── ssd_c55_internal.h
│ │ │ ├── ssd_types.h
│ │ │ ├── Std_Types.h
│ │ │ └── typedefs.h
│ │ ├── Project_Settings
│ │ │ ├── Debugger
│ │ │ │ └── ECUCoderDemoPro1_Debug.launch
│ │ │ ├── Linker_Files
│ │ │ │ ├── libs.ld
│ │ │ │ ├── mem.ld
│ │ │ │ └── sections.ld
│ │ │ └── Startup_Code
│ │ │ └── startup.S
│ │ └── src
│ │ ├── adc.c
│ │ ├── can_ccp.c
│ │ ├── can_hook.c
│ │ ├── ccp.c
│ │ ├── etimer.c
│ │ ├── fccu.c
│ │ ├── flash.c
│ │ ├── flashrchw.c
│ │ ├── gpio.c
│ │ ├── intc_sw_handlers.S
│ │ ├── intc_SW_mode_isr_vectors_MPC5744P.c
│ │ ├── mcp2515.c
│ │ ├── MPC57xx__Interrupt_Init.c
│ │ ├── pit.c
│ │ ├── pwm.c
│ │ └── Vector.c
│ ├── RapidECU_U3
│ │ ├── CAN2_Recive
│ │ │ └── RCV_2848
│ │ │ └── Enabled Subsystem
│ │ │ ├── include
│ │ │ │ ├── adc.h
│ │ │ │ ├── can.h
│ │ │ │ ├── ccp.h
│ │ │ │ ├── ccppar.h
│ │ │ │ ├── cpu.h
│ │ │ │ ├── derivative.h
│ │ │ │ ├── etimer.h
│ │ │ │ ├── fccu.h
│ │ │ │ ├── flash.h
│ │ │ │ ├── gpio.h
│ │ │ │ ├── lin.h
│ │ │ │ ├── mcp2515.h
│ │ │ │ ├── MPC5744P.h
│ │ │ │ ├── pit.h
│ │ │ │ ├── pwm.h
│ │ │ │ ├── rtwtypes.h
│ │ │ │ ├── siu.h
│ │ │ │ ├── spi.h
│ │ │ │ ├── ssd_c55.h
│ │ │ │ ├── ssd_c55_internal.h
│ │ │ │ ├── ssd_types.h
│ │ │ │ ├── Std_Types.h
│ │ │ │ └── typedefs.h
│ │ │ ├── Project_Settings
│ │ │ │ ├── Debugger
│ │ │ │ │ └── ECUCoderDemoPro1_Debug.launch
│ │ │ │ ├── Linker_Files
│ │ │ │ │ ├── libs.ld
│ │ │ │ │ ├── mem.ld
│ │ │ │ │ └── sections.ld
│ │ │ │ └── Startup_Code
│ │ │ │ └── startup.S
│ │ │ └── src
│ │ │ ├── adc.c
│ │ │ ├── can_ccp.c
│ │ │ ├── can_hook.c
│ │ │ ├── ccp.c
│ │ │ ├── etimer.c
│ │ │ ├── fccu.c
│ │ │ ├── flash.c
│ │ │ ├── flashrchw.c
│ │ │ ├── gpio.c
│ │ │ ├── intc_sw_handlers.S
│ │ │ ├── intc_SW_mode_isr_vectors_MPC5744P.c
│ │ │ ├── mcp2515.c
│ │ │ ├── MPC57xx__Interrupt_Init.c
│ │ │ ├── pit.c
│ │ │ ├── pwm.c
│ │ │ └── Vector.c
│ │ ├── Debug
│ │ │ ├── makefile
│ │ │ ├── makefile.local
│ │ │ ├── objects.mk
│ │ │ ├── Project_Settings
│ │ │ │ ├── Linker_Files
│ │ │ │ │ └── subdir.mk
│ │ │ │ └── Startup_Code
│ │ │ │ ├── startup.args
│ │ │ │ ├── startup.o
│ │ │ │ └── subdir.mk
│ │ │ ├── RapidECU_U3.args
│ │ │ ├── RapidECU_U3.elf
│ │ │ ├── RapidECU_U3.map
│ │ │ ├── RapidECU_U3.srec
│ │ │ ├── sources.mk
│ │ │ └── src
│ │ │ ├── adc.args
│ │ │ ├── adc.d
│ │ │ ├── adc.o
│ │ │ ├── can.args
│ │ │ ├── can_ccp.args
│ │ │ ├── can_ccp.d
│ │ │ ├── can_ccp.o
│ │ │ ├── can_cfg.args
│ │ │ ├── can_cfg.d
│ │ │ ├── can_cfg.o
│ │ │ ├── can.d
│ │ │ ├── can_hook.args
│ │ │ ├── can_hook.d
│ │ │ ├── can_hook.o
│ │ │ ├── can.o
│ │ │ ├── ccp.args
│ │ │ ├── ccp.d
│ │ │ ├── ccp.o
│ │ │ ├── cpu.args
│ │ │ ├── cpu.d
│ │ │ ├── cpu.o
│ │ │ ├── etimer.args
│ │ │ ├── etimer.d
│ │ │ ├── etimer.o
│ │ │ ├── fccu.args
│ │ │ ├── fccu.d
│ │ │ ├── fccu.o
│ │ │ ├── flash.args
│ │ │ ├── flash.d
│ │ │ ├── flash.o
│ │ │ ├── flashrchw.args
│ │ │ ├── flashrchw.d
│ │ │ ├── flashrchw.o
│ │ │ ├── gpio.args
│ │ │ ├── gpio.d
│ │ │ ├── gpio.o
│ │ │ ├── intc_sw_handlers.args
│ │ │ ├── intc_sw_handlers.o
│ │ │ ├── intc_SW_mode_isr_vectors_MPC5744P.args
│ │ │ ├── intc_SW_mode_isr_vectors_MPC5744P.d
│ │ │ ├── intc_SW_mode_isr_vectors_MPC5744P.o
│ │ │ ├── lin.args
│ │ │ ├── lin.d
│ │ │ ├── lin.o
│ │ │ ├── main.args
│ │ │ ├── main.d
│ │ │ ├── main.o
│ │ │ ├── mcp2515.args
│ │ │ ├── mcp2515.d
│ │ │ ├── mcp2515.o
│ │ │ ├── MPC57xx__Interrupt_Init.args
│ │ │ ├── MPC57xx__Interrupt_Init.d
│ │ │ ├── MPC57xx__Interrupt_Init.o
│ │ │ ├── pit.args
│ │ │ ├── pit.d
│ │ │ ├── pit.o
│ │ │ ├── pwm.args
│ │ │ ├── pwm.d
│ │ │ ├── pwm.o
│ │ │ ├── RapidECU_U3.args
│ │ │ ├── RapidECU_U3.d
│ │ │ ├── RapidECU_U3_data.args
│ │ │ ├── RapidECU_U3_data.d
│ │ │ ├── RapidECU_U3_data.o
│ │ │ ├── RapidECU_U3.o
│ │ │ ├── rtGetInf.args
│ │ │ ├── rtGetInf.d
│ │ │ ├── rtGetInf.o
│ │ │ ├── rtGetNaN.args
│ │ │ ├── rtGetNaN.d
│ │ │ ├── rtGetNaN.o
│ │ │ ├── rt_nonfinite.args
│ │ │ ├── rt_nonfinite.d
│ │ │ ├── rt_nonfinite.o
│ │ │ ├── siu.args
│ │ │ ├── siu.d
│ │ │ ├── siu.o
│ │ │ ├── spi.args
│ │ │ ├── spi.d
│ │ │ ├── spi.o
│ │ │ ├── subdir.mk
│ │ │ ├── Vector.args
│ │ │ ├── Vector.d
│ │ │ └── Vector.o
│ │ ├── include
│ │ │ ├── adc.h
│ │ │ ├── can.h
│ │ │ ├── ccp.h
│ │ │ ├── ccppar.h
│ │ │ ├── cpu.h
│ │ │ ├── derivative.h
│ │ │ ├── etimer.h
│ │ │ ├── fccu.h
│ │ │ ├── flash.h
│ │ │ ├── gpio.h
│ │ │ ├── lin.h
│ │ │ ├── mcp2515.h
│ │ │ ├── MPC5744P.h
│ │ │ ├── pit.h
│ │ │ ├── pwm.h
│ │ │ ├── RapidECU_U3.h
│ │ │ ├── RapidECU_U3_private.h
│ │ │ ├── RapidECU_U3_types.h
│ │ │ ├── rtGetInf.h
│ │ │ ├── rtGetNaN.h
│ │ │ ├── rt_nonfinite.h
│ │ │ ├── rtwtypes.h
│ │ │ ├── siu.h
│ │ │ ├── spi.h
│ │ │ ├── ssd_c55.h
│ │ │ ├── ssd_c55_internal.h
│ │ │ ├── ssd_types.h
│ │ │ ├── Std_Types.h
│ │ │ └── typedefs.h
│ │ ├── Power On
│ │ │ ├── include
│ │ │ │ ├── adc.h
│ │ │ │ ├── can.h
│ │ │ │ ├── ccp.h
│ │ │ │ ├── ccppar.h
│ │ │ │ ├── cpu.h
│ │ │ │ ├── derivative.h
│ │ │ │ ├── etimer.h
│ │ │ │ ├── fccu.h
│ │ │ │ ├── flash.h
│ │ │ │ ├── gpio.h
│ │ │ │ ├── lin.h
│ │ │ │ ├── mcp2515.h
│ │ │ │ ├── MPC5744P.h
│ │ │ │ ├── pit.h
│ │ │ │ ├── pwm.h
│ │ │ │ ├── rtwtypes.h
│ │ │ │ ├── siu.h
│ │ │ │ ├── spi.h
│ │ │ │ ├── ssd_c55.h
│ │ │ │ ├── ssd_c55_internal.h
│ │ │ │ ├── ssd_types.h
│ │ │ │ ├── Std_Types.h
│ │ │ │ └── typedefs.h
│ │ │ ├── Project_Settings
│ │ │ │ ├── Debugger
│ │ │ │ │ └── ECUCoderDemoPro1_Debug.launch
│ │ │ │ ├── Linker_Files
│ │ │ │ │ ├── libs.ld
│ │ │ │ │ ├── mem.ld
│ │ │ │ │ └── sections.ld
│ │ │ │ └── Startup_Code
│ │ │ │ └── startup.S
│ │ │ └── src
│ │ │ ├── adc.c
│ │ │ ├── can_ccp.c
│ │ │ ├── can_hook.c
│ │ │ ├── ccp.c
│ │ │ ├── etimer.c
│ │ │ ├── fccu.c
│ │ │ ├── flash.c
│ │ │ ├── flashrchw.c
│ │ │ ├── gpio.c
│ │ │ ├── intc_sw_handlers.S
│ │ │ ├── intc_SW_mode_isr_vectors_MPC5744P.c
│ │ │ ├── mcp2515.c
│ │ │ ├── MPC57xx__Interrupt_Init.c
│ │ │ ├── pit.c
│ │ │ ├── pwm.c
│ │ │ └── Vector.c
│ │ ├── Project_Settings
│ │ │ ├── Debugger
│ │ │ │ └── ECUCoderDemoPro1_Debug.launch
│ │ │ ├── Linker_Files
│ │ │ │ ├── libs.ld
│ │ │ │ ├── mem.ld
│ │ │ │ └── sections.ld
│ │ │ └── Startup_Code
│ │ │ └── startup.S
│ │ ├── Release
│ │ │ ├── makefile
│ │ │ ├── makefile.local
│ │ │ ├── objects.mk
│ │ │ ├── Project_Settings
│ │ │ │ ├── Linker_Files
│ │ │ │ │ └── subdir.mk
│ │ │ │ └── Startup_Code
│ │ │ │ ├── startup.args
│ │ │ │ └── subdir.mk
│ │ │ ├── RapidECU_U3.args
│ │ │ ├── sources.mk
│ │ │ └── src
│ │ │ ├── adc.args
│ │ │ ├── can.args
│ │ │ ├── can_ccp.args
│ │ │ ├── can_cfg.args
│ │ │ ├── can_hook.args
│ │ │ ├── ccp.args
│ │ │ ├── cpu.args
│ │ │ ├── etimer.args
│ │ │ ├── fccu.args
│ │ │ ├── flash.args
│ │ │ ├── flashrchw.args
│ │ │ ├── gpio.args
│ │ │ ├── intc_sw_handlers.args
│ │ │ ├── intc_SW_mode_isr_vectors_MPC5744P.args
│ │ │ ├── lin.args
│ │ │ ├── main.args
│ │ │ ├── mcp2515.args
│ │ │ ├── MPC57xx__Interrupt_Init.args
│ │ │ ├── MPC57xx__Interrupt_Init.d
│ │ │ ├── MPC57xx__Interrupt_Init.o
│ │ │ ├── pit.args
│ │ │ ├── pwm.args
│ │ │ ├── RapidECU_U3.args
│ │ │ ├── RapidECU_U3.d
│ │ │ ├── RapidECU_U3_data.args
│ │ │ ├── rtGetInf.args
│ │ │ ├── rtGetNaN.args
│ │ │ ├── rt_nonfinite.args
│ │ │ ├── siu.args
│ │ │ ├── spi.args
│ │ │ ├── subdir.mk
│ │ │ └── Vector.args
│ │ ├── src
│ │ │ ├── adc.c
│ │ │ ├── can.c
│ │ │ ├── can_ccp.c
│ │ │ ├── can_cfg.c
│ │ │ ├── can_hook.c
│ │ │ ├── ccp.c
│ │ │ ├── cpu.c
│ │ │ ├── etimer.c
│ │ │ ├── fccu.c
│ │ │ ├── flash.c
│ │ │ ├── flashrchw.c
│ │ │ ├── gpio.c
│ │ │ ├── intc_sw_handlers.S
│ │ │ ├── intc_SW_mode_isr_vectors_MPC5744P.c
│ │ │ ├── lin.c
│ │ │ ├── main.c
│ │ │ ├── mcp2515.c
│ │ │ ├── MPC57xx__Interrupt_Init.c
│ │ │ ├── pit.c
│ │ │ ├── pwm.c
│ │ │ ├── RapidECU_U3.c
│ │ │ ├── RapidECU_U3_data.c
│ │ │ ├── rtGetInf.c
│ │ │ ├── rtGetNaN.c
│ │ │ ├── rt_nonfinite.c
│ │ │ ├── siu.c
│ │ │ ├── spi.c
│ │ │ └── Vector.c
│ │ └── SYS_CONTROL
│ │ ├── include
│ │ │ ├── adc.h
│ │ │ ├── can.h
│ │ │ ├── ccp.h
│ │ │ ├── ccppar.h
│ │ │ ├── cpu.h
│ │ │ ├── derivative.h
│ │ │ ├── etimer.h
│ │ │ ├── fccu.h
│ │ │ ├── flash.h
│ │ │ ├── gpio.h
│ │ │ ├── lin.h
│ │ │ ├── mcp2515.h
│ │ │ ├── MPC5744P.h
│ │ │ ├── pit.h
│ │ │ ├── pwm.h
│ │ │ ├── rtwtypes.h
│ │ │ ├── siu.h
│ │ │ ├── spi.h
│ │ │ ├── ssd_c55.h
│ │ │ ├── ssd_c55_internal.h
│ │ │ ├── ssd_types.h
│ │ │ ├── Std_Types.h
│ │ │ └── typedefs.h
│ │ ├── Project_Settings
│ │ │ ├── Debugger
│ │ │ │ └── ECUCoderDemoPro1_Debug.launch
│ │ │ ├── Linker_Files
│ │ │ │ ├── libs.ld
│ │ │ │ ├── mem.ld
│ │ │ │ └── sections.ld
│ │ │ └── Startup_Code
│ │ │ └── startup.S
│ │ └── src
│ │ ├── adc.c
│ │ ├── can_ccp.c
│ │ ├── can_hook.c
│ │ ├── ccp.c
│ │ ├── etimer.c
│ │ ├── fccu.c
│ │ ├── flash.c
│ │ ├── flashrchw.c
│ │ ├── gpio.c
│ │ ├── intc_sw_handlers.S
│ │ ├── intc_SW_mode_isr_vectors_MPC5744P.c
│ │ ├── mcp2515.c
│ │ ├── MPC57xx__Interrupt_Init.c
│ │ ├── pit.c
│ │ ├── pwm.c
│ │ └── Vector.c
│ └── RemoteSystemsTempFiles
├── Enabled_ec5744_rtw
│ ├── asap2.lis
│ ├── build_exception.mat
│ ├── codeInfo.mat
│ ├── Enabled.a2l
│ ├── Enabled.c
│ ├── Enabled_dwork_dependency.list
│ ├── Enabled.h
│ ├── Enabled_private.h
│ ├── Enabled_ref.rsp
│ ├── Enabled_types.h
│ ├── main.c
│ ├── modelsources.txt
│ ├── rtw_proj.tmw
│ ├── rtwtypeschksum.mat
│ └── rtwtypes.h
├── scv_images
│ ├── black.gif
│ ├── blue.gif
│ ├── dkgrn.gif
│ ├── grn01.gif
│ ├── grn02.gif
│ ├── grn03.gif
│ ├── grn04.gif
│ ├── grn05.gif
│ ├── grn06.gif
│ ├── grn07.gif
│ ├── grn08.gif
│ ├── grn09.gif
│ ├── horz_line.gif
│ ├── left_arrow.gif
│ ├── ltblue.gif
│ ├── ltgrn.gif
│ ├── pink.gif
│ ├── purple.gif
│ ├── red.gif
│ ├── right_arrow.gif
│ ├── trans.gif
│ ├── version101.txt
│ ├── vert_line.gif
│ └── yellow.gif
├── slprj
│ ├── ec5744
│ │ ├── Enabled
│ │ │ └── tmwinternal
│ │ │ └── minfo.mat
│ │ ├── RapidECU_U3
│ │ │ └── tmwinternal
│ │ │ └── minfo.mat
│ │ └── _sharedutils
│ │ ├── shared_file.dmr
│ │ └── tflSUInfo.mat
│ ├── _jitprj
│ │ ├── s3E8mdwK5I6vQMYKZtg5gYC.l
│ │ ├── s3E8mdwK5I6vQMYKZtg5gYC.mat
│ │ ├── s3VIrIWQTglwuDyjaAANO6C.l
│ │ ├── s3VIrIWQTglwuDyjaAANO6C.mat
│ │ ├── s48stgayWiJwEsOAlo8TlNH.l
│ │ ├── s48stgayWiJwEsOAlo8TlNH.mat
│ │ ├── s62SX8Z3WVCS6qkkpY7jbRB.l
│ │ ├── s62SX8Z3WVCS6qkkpY7jbRB.mat
│ │ ├── s7vKeYxfSj6hqrYcsVDcfDB.l
│ │ ├── s7vKeYxfSj6hqrYcsVDcfDB.mat
│ │ ├── saBbubXluNrRirhZIwY65bB.l
│ │ ├── saBbubXluNrRirhZIwY65bB.mat
│ │ ├── sAq1RpNMMYv6bH6GzFvzPhC.l
│ │ ├── sAq1RpNMMYv6bH6GzFvzPhC.mat
│ │ ├── sbhhRgBV9iSjhhCURIOeo8.l
│ │ ├── sbhhRgBV9iSjhhCURIOeo8.mat
│ │ ├── sbMdoxZEgYcdr9XMIyDddgF.l
│ │ ├── sbMdoxZEgYcdr9XMIyDddgF.mat
│ │ ├── sBnNxwqTUqZ6lv9Yd9CsLIF.l
│ │ ├── sBnNxwqTUqZ6lv9Yd9CsLIF.mat
│ │ ├── scPfrGuc4bbVFhEGXFi6yoB.l
│ │ ├── scPfrGuc4bbVFhEGXFi6yoB.mat
│ │ ├── scQBqtKHROjyoc9dMrWtMQ.l
│ │ ├── scQBqtKHROjyoc9dMrWtMQ.mat
│ │ ├── sCWJR1NhwswR0rjtdGeLK9B.l
│ │ ├── sCWJR1NhwswR0rjtdGeLK9B.mat
│ │ ├── sdCo7lw0fLHlwAKZIrrjGYC.l
│ │ ├── sdCo7lw0fLHlwAKZIrrjGYC.mat
│ │ ├── sde4Apo6A6yPuXMnOUIagGD.l
│ │ ├── sde4Apo6A6yPuXMnOUIagGD.mat
│ │ ├── sIYNOr1GKJu5pExPu5mGHsD.l
│ │ ├── sIYNOr1GKJu5pExPu5mGHsD.mat
│ │ ├── sJcdHzXuC9JXqUv8QCj1mZD.l
│ │ ├── sJcdHzXuC9JXqUv8QCj1mZD.mat
│ │ ├── sJd5pbyK2C4dCs9B9zac9nB.l
│ │ ├── sJd5pbyK2C4dCs9B9zac9nB.mat
│ │ ├── skTaP3pj7klMYVnABcEOuyG.l
│ │ ├── skTaP3pj7klMYVnABcEOuyG.mat
│ │ ├── sLAahNKaxkQ9fBem9Ly9EXG.l
│ │ ├── sLAahNKaxkQ9fBem9Ly9EXG.mat
│ │ ├── sM6LZYYoJMlFUsdO2ZsSwbH.l
│ │ ├── sM6LZYYoJMlFUsdO2ZsSwbH.mat
│ │ ├── sMjKunsyNGXZES69WGqD75G.l
│ │ ├── sMjKunsyNGXZES69WGqD75G.mat
│ │ ├── snK5JgeGHJpCLN4jgio526F.l
│ │ ├── snK5JgeGHJpCLN4jgio526F.mat
│ │ ├── sp2ixM4JVEZxeocDZszc3AD.l
│ │ ├── sp2ixM4JVEZxeocDZszc3AD.mat
│ │ ├── spjDXn26wd0l5AAlvOGhARD.l
│ │ ├── spjDXn26wd0l5AAlvOGhARD.mat
│ │ ├── sqTetFafttEGopRZOpd3ABH.l
│ │ ├── sqTetFafttEGopRZOpd3ABH.mat
│ │ ├── sSb37RP28n6G29NoDt5FP3G.l
│ │ ├── sSb37RP28n6G29NoDt5FP3G.mat
│ │ ├── sTaDUemyIYoT97hTwWLdwoF.l
│ │ ├── sTaDUemyIYoT97hTwWLdwoF.mat
│ │ ├── sVWpK88eFRgi9XPuTAEUVbC.l
│ │ ├── sVWpK88eFRgi9XPuTAEUVbC.mat
│ │ ├── sy5VHd7BJD6iicesh6hko8D.l
│ │ ├── sy5VHd7BJD6iicesh6hko8D.mat
│ │ ├── sybjKAH1hd69NFVP8I77XKB.l
│ │ ├── sybjKAH1hd69NFVP8I77XKB.mat
│ │ ├── syntEh1iegRzhPvTV96hm9B.l
│ │ ├── syntEh1iegRzhPvTV96hm9B.mat
│ │ ├── sZiV1drrBh2o7mSipPFKuEF.l
│ │ └── sZiV1drrBh2o7mSipPFKuEF.mat
│ ├── _sfprj
│ │ ├── EMLReport
│ │ │ ├── sAq1RpNMMYv6bH6GzFvzPhC.mat
│ │ │ └── sYkJiYFzryfIdLk1lqMpkGF.mat
│ │ ├── precompile
│ │ │ ├── 7M1QXjvoEBNlNvXS0Br8iE.mat
│ │ │ ├── dbinfo.mat
│ │ │ ├── iQzK8e7owrbYN6EeVSRR8F.mat
│ │ │ └── Ru1OJP53LfXXZgUAgHaXHG.mat
│ │ └── RapidECU_U3
│ │ └── _self
│ │ ├── rtw
│ │ │ └── ec5744
│ │ │ ├── info
│ │ │ │ └── binfo.mat
│ │ │ └── src
│ │ │ ├── c10_RapidECU_U3.tlc
│ │ │ ├── c10_RapidECU_U3.tlh
│ │ │ ├── c11_RapidECU_U3.tlc
│ │ │ ├── c11_RapidECU_U3.tlh
│ │ │ ├── c12_RapidECU_U3.tlc
│ │ │ ├── c12_RapidECU_U3.tlh
│ │ │ ├── c1_RapidECU_U3.tlc
│ │ │ ├── c1_RapidECU_U3.tlh
│ │ │ ├── c2_RapidECU_U3.tlc
│ │ │ ├── c2_RapidECU_U3.tlh
│ │ │ ├── c3_RapidECU_U3.tlc
│ │ │ ├── c3_RapidECU_U3.tlh
│ │ │ ├── c4_RapidECU_U3.tlc
│ │ │ ├── c4_RapidECU_U3.tlh
│ │ │ ├── c5_RapidECU_U3.tlc
│ │ │ ├── c5_RapidECU_U3.tlh
│ │ │ ├── c6_RapidECU_U3.tlc
│ │ │ ├── c6_RapidECU_U3.tlh
│ │ │ ├── c7_RapidECU_U3.tlc
│ │ │ ├── c7_RapidECU_U3.tlh
│ │ │ ├── c8_RapidECU_U3.tlc
│ │ │ ├── c8_RapidECU_U3.tlh
│ │ │ ├── c9_RapidECU_U3.tlc
│ │ │ ├── c9_RapidECU_U3.tlh
│ │ │ ├── RapidECU_U3_rtw.tlc
│ │ │ └── RapidECU_U3_rtw.tlh
│ │ └── sfun
│ │ ├── info
│ │ │ └── binfo.mat
│ │ └── src
│ │ ├── c10_RapidECU_U3.c
│ │ ├── c10_RapidECU_U3.h
│ │ ├── c10_RapidECU_U3.obj
│ │ ├── c1_RapidECU_U3.c
│ │ ├── c1_RapidECU_U3.h
│ │ ├── c1_RapidECU_U3.obj
│ │ ├── c2_RapidECU_U3.c
│ │ ├── c2_RapidECU_U3.h
│ │ ├── c2_RapidECU_U3.obj
│ │ ├── c3_RapidECU_U3.c
│ │ ├── c3_RapidECU_U3.h
│ │ ├── c3_RapidECU_U3.obj
│ │ ├── c4_RapidECU_U3.c
│ │ ├── c4_RapidECU_U3.h
│ │ ├── c4_RapidECU_U3.obj
│ │ ├── c5_RapidECU_U3.c
│ │ ├── c5_RapidECU_U3.h
│ │ ├── c5_RapidECU_U3.obj
│ │ ├── c6_RapidECU_U3.c
│ │ ├── c6_RapidECU_U3.h
│ │ ├── c6_RapidECU_U3.obj
│ │ ├── c7_RapidECU_U3.c
│ │ ├── c7_RapidECU_U3.h
│ │ ├── c7_RapidECU_U3.obj
│ │ ├── c8_RapidECU_U3.c
│ │ ├── c8_RapidECU_U3.h
│ │ ├── c8_RapidECU_U3.obj
│ │ ├── ji
│ │ │ ├── early_c10_sCWJR1NhwswR0rjtdGeLK9B.mat
│ │ │ ├── early_c1_syntEh1iegRzhPvTV96hm9B.mat
│ │ │ ├── early_c2_sBnNxwqTUqZ6lv9Yd9CsLIF.mat
│ │ │ ├── early_c3_sdCo7lw0fLHlwAKZIrrjGYC.mat
│ │ │ ├── early_c4_sy5VHd7BJD6iicesh6hko8D.mat
│ │ │ ├── early_c5_sSb37RP28n6G29NoDt5FP3G.mat
│ │ │ ├── early_c6_sVWpK88eFRgi9XPuTAEUVbC.mat
│ │ │ ├── early_c7_scPfrGuc4bbVFhEGXFi6yoB.mat
│ │ │ └── early_c8_s7vKeYxfSj6hqrYcsVDcfDB.mat
│ │ ├── multiword_types.h
│ │ ├── RapidECU_U3_sfun.bat
│ │ ├── RapidECU_U3_sfun.c
│ │ ├── RapidECU_U3_sfun_debug_macros.h
│ │ ├── RapidECU_U3_sfun.exp
│ │ ├── RapidECU_U3_sfun.h
│ │ ├── RapidECU_U3_sfun.lib
│ │ ├── RapidECU_U3_sfun.mak
│ │ ├── RapidECU_U3_sfun.map
│ │ ├── RapidECU_U3_sfun.mexw64.manifest
│ │ ├── RapidECU_U3_sfun.mol
│ │ ├── RapidECU_U3_sfun.obj
│ │ ├── RapidECU_U3_sfun_registry.c
│ │ ├── RapidECU_U3_sfun_registry.obj
│ │ ├── rtwtypeschksum.mat
│ │ └── rtwtypes.h
│ └── sl_proj.tmw
├── VCU_ec5744_rtw
│ ├── asap2.lis
│ ├── build_exception.mat
│ ├── buildInfo.mat
│ ├── can.c
│ ├── can_cfg.c
│ ├── codeInfo.mat
│ ├── compileInfo.mat
│ ├── cpu.c
│ ├── defines.txt
│ ├── html
│ │ ├── can_cfg_c.html
│ │ ├── can_c.html
│ │ ├── cpu_c.html
│ │ ├── css
│ │ │ └── coder_app.css
│ │ ├── define.js
│ │ ├── hilite_warning.png
│ │ ├── inspect.html
│ │ ├── js
│ │ │ └── coder_app.js
│ │ ├── lin_c.html
│ │ ├── main_c.html
│ │ ├── nav.html
│ │ ├── navToolbar.html
│ │ ├── RapidECU_U3_a2l.html
│ │ ├── RapidECU_U3_c.html
│ │ ├── RapidECU_U3_codegen_rpt.html
│ │ ├── RapidECU_U3_contents.html
│ │ ├── RapidECU_U3_data_c.html
│ │ ├── RapidECU_U3_h.html
│ │ ├── RapidECU_U3_interface.html
│ │ ├── RapidECU_U3_metrics.html
│ │ ├── RapidECU_U3_private_h.html
│ │ ├── RapidECU_U3_replacements.html
│ │ ├── RapidECU_U3_subsystems.html
│ │ ├── RapidECU_U3_survey.html
│ │ ├── RapidECU_U3_trace.html
│ │ ├── RapidECU_U3_traceInfo.js
│ │ ├── RapidECU_U3_types_h.html
│ │ ├── rtGetInf_c.html
│ │ ├── rtGetInf_h.html
│ │ ├── rtGetNaN_c.html
│ │ ├── rtGetNaN_h.html
│ │ ├── rt_nonfinite_c.html
│ │ ├── rt_nonfinite_h.html
│ │ ├── rtwhilite.js
│ │ ├── rtwmsg.html
│ │ ├── rtwreport.css
│ │ ├── rtwreport_utils.js
│ │ ├── rtwshrink.js
│ │ ├── rtwtypes_h.html
│ │ ├── search.js
│ │ ├── siu_c.html
│ │ ├── spi_c.html
│ │ └── spinner.gif
│ ├── lin.c
│ ├── main.c
│ ├── modelsources.txt
│ ├── RapidECU_U3.a2l
│ ├── RapidECU_U3.c
│ ├── RapidECU_U3_data.c
│ ├── RapidECU_U3_dwork_dependency.list
│ ├── RapidECU_U3.h
│ ├── RapidECU_U3_private.h
│ ├── RapidECU_U3_ref.rsp
│ ├── RapidECU_U3_types.h
│ ├── rtGetInf.c
│ ├── rtGetInf.h
│ ├── rtGetNaN.c
│ ├── rtGetNaN.h
│ ├── rt_nonfinite.c
│ ├── rt_nonfinite.h
│ ├── rtw_proj.tmw
│ ├── rtwtypeschksum.mat
│ ├── rtwtypes.h
│ ├── siu.c
│ └── spi.c
└── VCU_U3
├── AnkaiAuto_EC.mdl
├── MECA
│ ├── CanConfig.xml
│ ├── data.a2l
│ ├── design.layout
│ └── MECA.mea
├── RapidECU_U31012.slx
├── RapidECU_U3181004
│ └── RapidECU_U4.slx
├── RapidECU_U3181004.rar
├── RapidECU_U3.a2l
├── RapidECU_U3BAK.slx
├── RapidECU_U3_ec5744_rtw
│ ├── asap2.lis
│ ├── buildInfo.mat
│ ├── can.c
│ ├── can_cfg.c
│ ├── codeInfo.mat
│ ├── compileInfo.mat
│ ├── cpu.c
│ ├── defines.txt
│ ├── html
│ │ ├── can_cfg_c.html
│ │ ├── can_c.html
│ │ ├── cpu_c.html
│ │ ├── css
│ │ │ └── coder_app.css
│ │ ├── define.js
│ │ ├── hilite_warning.png
│ │ ├── inspect.html
│ │ ├── js
│ │ │ └── coder_app.js
│ │ ├── lin_c.html
│ │ ├── main_c.html
│ │ ├── nav.html
│ │ ├── navToolbar.html
│ │ ├── RapidECU_U3_a2l.html
│ │ ├── RapidECU_U3_c.html
│ │ ├── RapidECU_U3_codegen_rpt.html
│ │ ├── RapidECU_U3_contents.html
│ │ ├── RapidECU_U3_data_c.html
│ │ ├── RapidECU_U3_h.html
│ │ ├── RapidECU_U3_interface.html
│ │ ├── RapidECU_U3_metrics.html
│ │ ├── RapidECU_U3_private_h.html
│ │ ├── RapidECU_U3_replacements.html
│ │ ├── RapidECU_U3_subsystems.html
│ │ ├── RapidECU_U3_survey.html
│ │ ├── RapidECU_U3_trace.html
│ │ ├── RapidECU_U3_traceInfo.js
│ │ ├── RapidECU_U3_types_h.html
│ │ ├── rtGetInf_c.html
│ │ ├── rtGetInf_h.html
│ │ ├── rtGetNaN_c.html
│ │ ├── rtGetNaN_h.html
│ │ ├── rt_nonfinite_c.html
│ │ ├── rt_nonfinite_h.html
│ │ ├── rtwhilite.js
│ │ ├── rtwmsg.html
│ │ ├── rtwreport.css
│ │ ├── rtwreport_utils.js
│ │ ├── rtwshrink.js
│ │ ├── rtwtypes_h.html
│ │ ├── search.js
│ │ ├── siu_c.html
│ │ ├── spi_c.html
│ │ └── spinner.gif
│ ├── lin.c
│ ├── main.c
│ ├── modelsources.txt
│ ├── RapidECU_U3.a2l
│ ├── RapidECU_U3.c
│ ├── RapidECU_U3_data.c
│ ├── RapidECU_U3_dwork_dependency.list
│ ├── RapidECU_U3.h
│ ├── RapidECU_U3_private.h
│ ├── RapidECU_U3_ref.rsp
│ ├── RapidECU_U3_types.h
│ ├── rtGetInf.c
│ ├── rtGetInf.h
│ ├── rtGetNaN.c
│ ├── rtGetNaN.h
│ ├── rt_nonfinite.c
│ ├── rt_nonfinite.h
│ ├── rtw_proj.tmw
│ ├── rtwtypeschksum.mat
│ ├── rtwtypes.h
│ ├── siu.c
│ └── spi.c
├── RapidECU_U3.slx
├── slprj
│ ├── ec5744
│ │ ├── RapidECU_U3
│ │ │ └── tmwinternal
│ │ │ ├── binfo.mat
│ │ │ └── minfo.mat
│ │ └── _sharedutils
│ │ ├── shared_file.dmr
│ │ └── tflSUInfo.mat
│ └── sl_proj.tmw
└── TorqueCtrl_parameters.mat
100 directories, 779 files
标签:
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
支持(0) 盖楼(回复)