Skip to main content

J1939MakeName

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

void J1939MakeName( char[] retDeviceName, long selfConfiguring, long industryGroup, long deviceClassInstance, long deviceClass, long function, long functionInstance, long ECUInstance, long manufacturerCode, long identityNumber );

Description

This function creates a J1939 device name. The parameter retDeviceName must be an array with size 8. It will be filled with the device name.

Parameters

  • retDeviceName: device name is copied in this buffer (must be 8 bytes)

Return Values

Example

char name[8];
J1939MakeName( name, 1, 2, 3, 4, 5, 6, 7, 8, 9);