LogoLogo
Home
  • 🏠Home
  • 💽ReXdesk: Configuration Software
  • ReXdesk : ReXgen Series Configuration Software
    • ReXdesk Manual
      • Getting Started
        • Pinout Details: ReXgen1
        • Pinout Details: ReXgen 2
        • Pinout details: ReXgen Air
        • Pinout Details: ReXgen Pro
        • Software Installation
        • Driver Installation
        • Activate ReXdesk License
      • Software Introduction
        • Graphical Overview
        • Navigation Bar
          • File Menu
          • Project Menu
          • Config Menu
          • Device Menu
          • Tool Menu
            • Encryption Manager
            • Cloud Settings
              • Mobile Settings
              • Wi-Fi Settings
              • *FTP Settings
              • AWS Settings
            • Settings
        • Status Bar
        • Projects Panel
        • Configuration Panel
          • CAN Bus Options
          • LIN Bus Options
          • Channel Options
          • Transmitting
            • Periodic CAN/CAN FD Transmission
            • HW Info Tool
            • Snapshot Tool
          • Filter
          • Device Configuration
            • Storage
            • Encrypting Data Log and Device
            • Enabling FTP Upload
            • ReXgen Sleep/Wake up function Implementation
            • AWS
            • Live data window
        • Library window
        • Trigger window
          • New trigger panel
        • Internal storage Window
        • Show data log window
          • Export Configurator Window
        • Export settings window
        • TCP/IP
          • Configuring Wi-Fi settings to Start up a Pro Device.
      • Quick Start Guide
        • Preparation of Configuration
          • CAN Log All Configuration
          • Logging Using Filters
          • Logging Using J1939 Filters
          • Using the UDS function
          • Logging Analog Channels
          • Logging Digital Channels
          • Logging Accelerometer data
          • Logging Gyroscope data
          • Logging GNSS data
        • Advanced Configuration
          • Setup Cloud Settings
            • Mobile Settings
            • Wi-Fi Settings
            • FTP Settings
              • Steps to add new FTP settings using ReXdesk
              • Steps to enable FTP configuration in the ReXgen logger.
            • AWS Settings
              • Steps to add new AWS settings using ReXdesk
              • Steps to enable AWS configuration in the ReXgen logger
          • Upload configuration to the logger via FTP
          • Upload configuration to the logger via AWS S3 bucket
          • Trigger-Based Logging
          • Periodic CAN/CAN FD Transmission
          • HW Info Tool
          • Snapshot Tool
        • Retrieving Raw Data Log
        • One-Click Export after Linking DBC to CAN/CAN FD Bus
        • Exporting Data using CAN/CAN FD DBC File
        • Viewing Live Data
        • Log OBD2 Mode 1
      • Appendix 1 - CAN ERROR Definitions
      • Appendix 2 – Digital Input Functions
      • Appendix 3 – GNSS Orientation Guide
        • GNSS Positioning
        • Dead Reckoning
          • IMU Orientation in ReXgen Air devices
          • IMU Orientation in ReXgen Pro devices
        • Geofencing
      • Appendix 4 – Using the LTE Debug Tool
      • Appendix 5 – Setting up a digital trigger in ReXgen
      • Appendix 6 – ReXdesk CLI Manual
        • Convert-file
        • Convert-folder
        • Configure
        • Reflash
        • Format
    • ReXdesk CLI Guide
      • Convert-file
      • Convert-folder
      • Configure
      • Reflash
      • Format
    • ReXdesk Convert Guide
      • Convert-file
      • Convert-folder
      • Configure
      • Reflash
      • Format
Powered by GitBook
On this page
Export as PDF
  1. ReXdesk : ReXgen Series Configuration Software
  2. ReXdesk CLI Guide

Convert-file

Main command: help convert-file

General convert format: convert-file -I <input file> -O <output file>

Command Options

Purpose

Description

-I <input file>

Specify input file path.

Supported formats are XML (for configuration) and RXD (for data file conversion)

-O <output file>

Specify output target file path.

If the input file is a configuration (.xml), the output file format should be .rxc. If the input file is a data file (.rxd), the supported output formats are:

· ASAM MDF4 file (*.mf4)

· ASCII Logging File (*.asc)

· Vector binary frames (*.blf)

· Peak Can Trace File (*.trc)

· Comma separated trace (*.cst)

· Matlab 5.0 (*.mat)

· Apache Parquet (*.parquet)

· Comma separated values (*.csv

-F <format>

(Optional)

Specify desired internal file format.

Applicable for CSV file type. Supported formats are:

DiaLOG - file format structured for DiaLOG import (default).

InfluxDB - file format structured for InfluxDB import.

Regional - unofficial csv file format. These use local and regional settings for the list separator and decimal separator.

-S <bus> <signal file>

(Optional)

Attach signals to specific can bus.

It can be used multiple times for each bus.

· Parameter <bus> should be the name of the bus - can0, can1...

· Parameter <signal file> should be the signal file path. Supported file formats are DBC only.

-R <rate> <method>

Specify the resampling rate and method

Define the resampling rate in milliseconds and the method to use to obtain values:

· Near - to use the nearest sample by timestamp

Last - last sample, which means the previous

-T <axis> <begin> <end>

Specify the beginning and end parameters

Define the time axis sync initial sample timestamp source

· First - first sample in file

· Zero - zero seconds (0 sec)

Begin and End parameters can describe what to do before the initial sample in each channel and after the last sample in each channel. Optional values can be:

· nothing

· duplicate

Example:

To convert an RXD file to asc, use the below script:

@echo off

CD C:\Program Files (x86)\Influx Technology\ReXdesk\&&rexdesk convert-file -I “C:\Users\user\Desktop\Input\New Project_ReXgen0000049_20210702_113743.rxd” -O “C:\Users\user\Desktop\Output\Converted.asc”

To convert an RXD file to CSV after linking a DBC file, use the below script:

@echo off

CD C:\Program Files (x86)\Influx Technology\ReXdesk\&&rexdeskconvert-file -I “C:\Users\user\Desktop\Input\IMU_out_0000007_20211116_185402.rxd” -O “C:\Users\user\Desktop\Ouput\Converted.csv” -s can0 “C:\Users\user\Desktop\ReXgen_IMU_Out_V2.dbc”

To convert an XML configuration file to rxc, use the below script:

@echo off

CD C:\Program Files (x86)\Influx Technology\ReXdesk\&&rexdesk convert-file -I “C:\Users\user\Desktop\Input\New Project_ReXgen0000049_20210702_113743.xml” -O “C:\Users\user\Desktop\Output\Config.rxc”

PreviousReXdesk CLI GuideNextConvert-folder

Last updated 2 days ago