Questions tagged [adtf]

ADTF (Automotive Data and Time-Triggered Framework) is a framework that supports the development process in automotive software development. It is a stable measurement framework, which is used in ADAS (Advanced Driver Assistance Systems) and can adopt typical bus data such as CAN, FlexRAY, Ethernet etc as well as raw data from any sources.

23 questions
4
votes
1 answer

Adtf dat files - streams and structure types

ADTF dat file contains streams of data. In the .dat file there is only a stream name. To find the structure of the stream one has to go through DDL .description file. Sometimes the .description files are incomplete or are missing link from stream…
Piotr Reszke
  • 1,576
  • 9
  • 21
2
votes
1 answer

usage of Plugin Description generator?

I need help in one problem i.e my plugin description is not being generated . My .adtfplugin is generated properly. And i wanted to generated plugin description using adtf_plugin_description_generator.exe. It requires some opencv dlls and one…
user12071441
  • 95
  • 1
  • 8
2
votes
4 answers

ADTF recording file format

I am coding an ADTF recording file reader in C++. I have already read the header using the structure specified here https://support.digitalwerk.net/adtf_libraries/adtf-streaming-library/v2/DATFileFormatSpecification.pdf typedef struct tagFileHeader…
2
votes
1 answer

Serial Port - Sending data as uint8

I am currently on a project and trying to send data through an Xbee. I used the SerialPort.h library to send 'H' and 'L' via the serial port to an Arduino to turn on a led. It worked. This I tried in Arduino and then in Visual Studio. Both…
2
votes
3 answers

ADTF SDK: import manifest AND handle it

I'm trying to run a full ADTF configuration from my own C++ command-line application using the ADTF SDK. ADTF version: 2.9.1 (pretty old). Here's what I have (want) to do: Load manifest file Load globals-xml Load config-xml 2 & 3 are done, using…
Zuzu Corneliu
  • 1,594
  • 2
  • 15
  • 27
2
votes
1 answer

In ADTF 3, how can we create a drop-down list for the filter properties?

In ADTF 2 we could do that using NSSUBPROP. I am looking for a similar function in ADTF3.
2
votes
1 answer

Are there structured properties like in ADTF2?

In ADTF2 it was possible to create nested properties by concatenating the names with "::". So property names "Foo::Property1" and "Foo::Property2" would create following structure: Foo Property1 Property2 Is something like this also possible…
krase
  • 1,006
  • 7
  • 18
2
votes
2 answers

Reading data from ADTF 2 using DDL structures

I'm trying to read the exemplary ADTF file. When reading the chunk header I see that chunk size is 96bytes, subtracting the header length (32) it leaves us with 64bytes for the actual data. Now the data structure for the stream says we need only 43…
Piotr Reszke
  • 1,576
  • 9
  • 21
2
votes
1 answer

Default for ADTF filter trigger

In ADTF 3.0 triggers are separated from filters. Is there a default trigger or must I define a trigger for every filter? If there is a default trigger Is it data or time triggered? Is it possible to define my own default trigger?
Hans One
  • 3,329
  • 27
  • 28
1
vote
1 answer

What is the reason for 'Unable to resolve substream' error in ADTF?

I'm having the following problem when trying to setup Substream Assembler filter with Substream Selector: I have the following basic setup in the ADTF tool: The input to Substream Assembly is simply a dummy filter, generating some random data and…
1
vote
2 answers

Using ADTF File Library

I wanted to use ADTF library in my visual studio project. Do i need to build the library from my machine to use it? The instructions provided with the library are not clear to me since i haven't used cmake build before. Any help in this regard is…
SS7117
  • 33
  • 5
1
vote
1 answer

adtfdat how to record data with this file format

I am playing with ADTF 3 assist to learn how to create plugins. I have read all tutorials from digitalwerk and I have now a good background on how to manage cmake, VS2017 C++, configuration editor, services and so on. I have also compiled some of…
Antonio Leite
  • 460
  • 3
  • 7
1
vote
3 answers

Linking a library fails with LINK1181 on VS17

I am trying to use the ADTF streaming library in my project. When I am including the lib, I get the LNK1181 error. The library comes with the headers, the lib files and dll files. I have added the path inside the C/C++ -> General -> Additional…
1
vote
2 answers

ADTF .dat trace file reader

I am working on ADTF .dat trace file. I need to read these files without using ADTF tools. The trace file is of FLEXRAY. I would like to know is there any open source tool/library to read such file Or, can anyone guide me how do i proceed to read…
Surendra
  • 41
  • 5
1
vote
1 answer

ADTF no mediadescription for struct type " error

Explanation: My ADTF-Filter gets as input two double values and its output is a struct. The struct contains a few double values. typedef struct { double ValueX; double ValueY; double ValueZ; } tStruct; My problem: I wanted to see my…
Tailor
  • 193
  • 1
  • 12
1
2