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 Convert Guide

Convert-folder

Main command: rexdeskconvert help convert-folder

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

Command Options

Purpose

Description

-I <input folder>

Specify input folder path containing RXD files.

-O <output folder>

Specify output target folder path.

-C (optional)

Set concatenation mode.

All converted data will be stored in the same output file (concatenated) when- C is used.

-F <type> <format>

Specify desired output type and internal file format.

Supported target conversion file types and formats are:

· mf4 for ASAM MDF4 file (*.mf4)

· asc for ASCII Logging File (*.asc)

· blf for Vector binary frames (*.blf)

· mat for Matlab 5.0 (*.mat)

· csv for Comma delimited (*.csv)

· csv InfluxDB for CSV line protocol file (*.csv) required for InfluxDB import

-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.

-E <encryption key>

(Optional)

Specify encryption key file.

Used for decrypting .rxe files.

Example:

To convert all the RXD files in a folder to asc, use the below script:

@echo off

CD C:\Program Files (x86)\Influx Technology\ReXdeskConvert\&&rexdeskconvert convert-folder -F “asc” -I “C:\Users\usern\Desktop\Input” -O “C:\Users\usern\Desktop\Output”

To merge and convert all the RXD files in a folder to CSV, use the below script:

@echo off

CD C:\Program Files (x86)\Influx Technology\ReXdeskConvert\&&rexdeskconvert convert-folder -C -F “csv” -I “C:\Users\user\Desktop\Input” -O “C:\Users\user\Desktop\Output”

To merge and convert all the RXD files in a folder to CSV after linking the DBC file, use the below script:

@echo off

CD C:\Program Files (x86)\Influx Technology\ReXdeskConvert\&&rexdeskconvert convert-folder -C -F “asc” -I “C:\Users\user\Desktop\Input” -O “C:\Users\user\Desktop\Output” -s can0 “C:\Users\user\Desktop\ReXgen_IMU_Out_V2.dbc”

PreviousConvert-fileNextConfigure

Last updated 1 year ago