Supported platforms: CODESYS 2.3

 

ISOBUS Conformance Guide

This section describes requirements to be able to pass AEF software conformance tests.

 

This guide is focused on application design requirements and limitations. It does not describe AEF procedures in detail.

 

Epec has pre-tested ISOBUS libraries in AEF SW conformance test.

See AEF ISOBUS Functionalities below for more information on passed functionalities.

 

 

It is possible that some issues have not been detected during pre-testing because the conformance test executes test cases based on what the application implements.

 

Official SW conformance testing is performed by AEF certified ISOBUS test laboratory and it always needs to be done using the end-user application.

 

General requirements

The following is required to be able to create conformance tested products:

 

Development environment

The software development requires the following versions or newer:

 

Additionally, ISOBUS AUX-N Functionality requires the following versions or newer:

See also How to use AUX Functions for AUX-N implementation guide.

ISOBUS compatible hardware

The used hardware variant needs to be ISOBUS hardware tested.

 

Control Unit

AEF hardware ID

E30E3724-21

E30E3724-21EM

000214

 

E30E3606-23

000215

E30E3610-01

E30E3610-52

000216

 

MultiTool 5.9 or later, or MultiTool Creator automatically includes hardware identifier default values in the diagnostic message when a new control unit is created.

 

The following firmware version is required:

 

ISOBUS standard requires CAN sample point to be 80% (+/- 3% tolerance).

The CAN sample point is configured by code template when MultiTool 5.9 or later, or MultiTool Creator is used.

 

SUT configuration file

AEF software conformance test is configured by SUT (System Under Test) file.

This can be created with SUT editor which is available from the AEF ISOBUS database.

 

For more information, see also ISOBUS SUT configuration.

 

 

AEF ISOBUS Functionalities

 

The following functionalities have been pre-tested:

 

 

Common application requirements

 

1. Saving address claiming current address to non-volatile memory and restoring on bootup shall be implemented (ISO 11783-5: 2011 chapter 4.3.3.4).

 

Example codeExample code

Following example uses 3000 series FRAM to save address claiming address.

Example assumes that MultiTool Creator code template is used and ISOBUS is initialized to CAN2.

 

FRAM definitions:

 

 

G_AppInitialAddressChanged AT %MB10004:BOOL := FALSE;

G_AppInitialAddress AT %MB10005:BYTE := G_ACL_CAN2_DEV1_INITIAL_ADDRESS;

 

Set address claiming initial address during bootup before address claim server is executed.

 

ISOBUS_CAN2_DiagInitUserCode:

 

 

IF G_AppInitialAddressChanged THEN

    G_ACL_CAN2_InitialAddresses[1] := G_AppInitialAddress;

END_IF

 

Monitor address changes and save current valid address.

 

ISOBUS_CAN2_DiagUpdateUserCode:

 

 

IF G_ACL_CAN2_FB.o_AddressClaimData.OwnDevices[1].Status = ACL_OK THEN

IF G_AppInitialAddress <> G_ACL_CAN2_FB.o_AddressClaimData.OwnDevices[1].Address THEN

G_AppInitialAddressChanged := TRUE;

G_AppInitialAddress := G_ACL_CAN2_FB.o_AddressClaimData.OwnDevices[1].Address;

G_3724_FastParamsSave := TRUE;

END_IF

END_IF

 

 

 

 

2. It is recommended to set 500ms monitoring time delay for address claim server.

When AUX-N Functions are used this is mandatory.

Delay is used to detect if address claim device has disappeared from ISOBUS when new address claim request is sent and previously present device does not respond anymore.

 

Example codeExample code

Init:

 

 

(*Set ACL monitoring time to detect if ACL device (e.g. VT) stops responding to ACL requests*)

G_ACL_CAN2_MonitoringTime := T#500ms;

 

 

 

 

VT application requirements

 

There are no VT specific requirements for the conformance test that the application needs to implement.

To maintain compatibility, the VT client library needs to adjust the application's object pool to the VT terminal's capabilities.

 

The following are examples of what the VT client library will adjust before loading object pool to terminal:

 

VT client's object scaling factor is based on parent mask. Same object ID should not be used in both soft key mask and data mask for scaling to work correctly.

E.g. if same image is needed in soft key and data masks, then separate objects should be created.

 

 

AUX-N Function application requirements

 

The application will be conformance capable if it's implemented following the How to use AUX Functions guide.

 

 

TC application requirements

 

Standard defines guidelines for TC object pool designing in ISO 11783-10:2015 Annex F.

Annex F also lists the recommended DDIs for each TC functionality.

 

Details for all the task controller DDI variables are found in ISOBUS Online Data Dictionary.

 

1. Object pool xml file shall reference to each variable in only one element (one DOR for each variable's object ID).

 

ExampleExample

 

Following defines two unique DPD variables (object ID 1000 & 1100). Both use actual work state DDI (0x8D).

 

Variable definitions:

 

 

<!-- DEV objects -->

<DPD A="1000" B="008d" C="1" D="9" E="Actual work state"/>

 

<!-- Boom 1 objects -->

<DPD A="1100" B="008d" C="1" D="9" E="Actual work state"/>

 

 

Following defines Device element which references to object ID 1000.

 

DEV element definition:

 

 

<!-- DET Main device element -->

<DET A="DET-0" B="10000" C="1" D="DEV" E="0" F="0">

<DOR A="1000"/>

</DET>

 

 

Following defines Function element (boom 1) which references to object ID 1100.

 

Function element definition:

 

 

<!-- DET Boom 1 (FUN) device element, parent: device -->

<DET A="DET-2" B="10100" C="2" D="B1" E="2" F="10000">

<DOR A="1100"/>

</DET>

 

 

 

 

2. Application shall check TC metrics for how many booms, sections and control channels the server supports.

 

When TC server supports TC-SC, it shall support at least 1 boom and 3 sections (ISO 11783-10:2015 chapter F.2.3).

 

When TC server supports TC-GEO, it shall support at least 1 control channel (ISO 11783-10:2015 chapter F.2.2).

 

Number of booms, sections and control channels selected at MultiTool Creator represent the maximum amount supported by client application. These shall not be modified even if object pool is re-configured on-fly.

 

 

3. If application implements TC-GEO, it shall also implement TC-BAS (ISO 11783-10:2015 chapter F.2.2). In this case TC-BAS is automatically selected by MultiTool Creator.

 

 

See also

 

 

 

 

 

Source file topic100564.htm

Last updated 13-Jun-2024