Copyright 2021 Vector Informatik GmbH
Lightweight implementation of the ASAM XCP Protocol Layer V1.4 (1000 lines of code in XCPlite.c).
Supports Linux 32/64 Bit and Windows 32/64 Bit Posix and Windows Sockets or Vector VN5xxx automotive Ethernet devices 100-Base-T1 or 1000-Base-T1 BroadrReach, XL-API V3 network based access
List of restrictions compared to Vectors free xcpBasic and commercial xcpProf in source file xcpLite.c.
Supports only XCP on Ethernet Thread safe, minimal thread lock and zero copy data acquisition. C and C++ target support.
Achieves 40 MByte/s throughput on a Raspberry Pi 4 (jumbo frames enabled) with 3% cpu time in event copy routine
Quick start with no A2L (ASAP2 ECU description) required. An A2L with reduced featureset is generated through code instrumentation during runtime on target system and automatically uploaded by XCP).
C and C++ measurement demo variables and code example in ecu.c and ecupp.cpp. Demo how to measure global variables and dynamic instances of structs and classes.
Only simple code instrumentation needed for event triggering and data copy, event definition and data object definition.
Example:
double channel1;
channel1 = 0;
A2lCreateEvent("ECU"); // Create a new event with name "ECU""
A2lSetEvent("ECU"); // Set event "ECU" to be associated to following measurement definitions
A2lCreatePhysMeasurement(channel1, 2.0, 1.0, "Volt", "Demo floating point signal"); // Create a new measurement signal "channel1" with linear conversion rule (factor,offset) and unit "Volt"
channel1 += 0.6;
XcpEvent(1); // Trigger event here, timestamp and copy measurement data
Demo visual Studio solution and CANape project included for Raspberry Pi 4 and Windows 32/64.
All settings and parameters for the XCP protocol and transport layer are located in xcp_cfg.h and xcptl_cfg.h
Compile options for the XCPlite demo are located in main.h:
#define XCPSIM_ENABLE_A2L_GEN // Enable A2L creator and A2L upload to host
#define XCPSIM_ENABLE_XLAPI_V3 // Enable Vector XL-API stack (option -v3) for BroadrReach xxx-Base-T1
#define APP_ENABLE_MULTICAST // Enable multicast time synchronisation (GET_DAQ_CLOCK_MULTICAST)
- If A2L generation and upload is disabled, use CANape address update with Linker Map Type ELF extended for a.out format or PDB for .exe
- The A2L generator creates a unique file name for the A2L, for convinience use name detection (GET_ID 1)
- Linux Compile with -O2, Link with -pthread
- Jumbo frames are disabled by default
- 64 bit version needs all objects within one 4 GByte data segment