├── .gitattributes ├── .gitignore ├── AUTOSAR_Calibration_UserManual_EN.pdf ├── CCP.7z ├── CCP上位机.rar ├── CCP标定及标定工具介绍1.pdf ├── CCP标定及标定工具介绍3.pdf ├── CCP标定及标定工具介绍4.pdf ├── CCP标定及标定工具介绍5.pdf ├── Vector-XCP.7z ├── XCP_ReferenceBook_V3.0_EN.pdf ├── ccp.exe └── 基于XCP协议的标定系统设计与实现_李岩.pdf /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Object files 5 | *.o 6 | *.ko 7 | *.obj 8 | *.elf 9 | 10 | # Linker output 11 | *.ilk 12 | *.map 13 | *.exp 14 | 15 | # Precompiled Headers 16 | *.gch 17 | *.pch 18 | 19 | # Libraries 20 | *.lib 21 | *.a 22 | *.la 23 | *.lo 24 | 25 | # Shared objects (inc. Windows DLLs) 26 | *.dll 27 | *.so 28 | *.so.* 29 | *.dylib 30 | 31 | # Executables 32 | *.exe 33 | *.out 34 | *.app 35 | *.i*86 36 | *.x86_64 37 | *.hex 38 | 39 | # Debug files 40 | *.dSYM/ 41 | *.su 42 | *.idb 43 | *.pdb 44 | 45 | # Kernel Module Compile Results 46 | *.mod* 47 | *.cmd 48 | .tmp_versions/ 49 | modules.order 50 | Module.symvers 51 | Mkfile.old 52 | dkms.conf 53 | -------------------------------------------------------------------------------- /AUTOSAR_Calibration_UserManual_EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimmonsChen/Vector-CCP-XCP/dbbe1f24e08d847e98e893560d9eb510e8e31cea/AUTOSAR_Calibration_UserManual_EN.pdf -------------------------------------------------------------------------------- /CCP.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimmonsChen/Vector-CCP-XCP/dbbe1f24e08d847e98e893560d9eb510e8e31cea/CCP.7z -------------------------------------------------------------------------------- /CCP上位机.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimmonsChen/Vector-CCP-XCP/dbbe1f24e08d847e98e893560d9eb510e8e31cea/CCP上位机.rar -------------------------------------------------------------------------------- /CCP标定及标定工具介绍1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimmonsChen/Vector-CCP-XCP/dbbe1f24e08d847e98e893560d9eb510e8e31cea/CCP标定及标定工具介绍1.pdf -------------------------------------------------------------------------------- /CCP标定及标定工具介绍3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimmonsChen/Vector-CCP-XCP/dbbe1f24e08d847e98e893560d9eb510e8e31cea/CCP标定及标定工具介绍3.pdf -------------------------------------------------------------------------------- /CCP标定及标定工具介绍4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimmonsChen/Vector-CCP-XCP/dbbe1f24e08d847e98e893560d9eb510e8e31cea/CCP标定及标定工具介绍4.pdf -------------------------------------------------------------------------------- /CCP标定及标定工具介绍5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimmonsChen/Vector-CCP-XCP/dbbe1f24e08d847e98e893560d9eb510e8e31cea/CCP标定及标定工具介绍5.pdf -------------------------------------------------------------------------------- /Vector-XCP.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimmonsChen/Vector-CCP-XCP/dbbe1f24e08d847e98e893560d9eb510e8e31cea/Vector-XCP.7z -------------------------------------------------------------------------------- /XCP_ReferenceBook_V3.0_EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimmonsChen/Vector-CCP-XCP/dbbe1f24e08d847e98e893560d9eb510e8e31cea/XCP_ReferenceBook_V3.0_EN.pdf -------------------------------------------------------------------------------- /ccp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimmonsChen/Vector-CCP-XCP/dbbe1f24e08d847e98e893560d9eb510e8e31cea/ccp.exe -------------------------------------------------------------------------------- /基于XCP协议的标定系统设计与实现_李岩.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimmonsChen/Vector-CCP-XCP/dbbe1f24e08d847e98e893560d9eb510e8e31cea/基于XCP协议的标定系统设计与实现_李岩.pdf --------------------------------------------------------------------------------