このコンテンツは設定された言語で表示できません。

このコンテンツは表示可能な別の言語で表示されています。 お使いのブラウザに翻訳機能がある場合はご利用ください。

Accessing External Storage on a Phar Lap or VxWorks Real-Time Controller

Updated Dec 22, 2023

Environment

Hardware

  • CompactRIO Controller
  • CompactDAQ Controller

Operating System

  • Phar Lap
  • VxWorks

How do I use the File Transfer Protocol (FTP) to transfer data to and from an external CompactFlash card or external USB drive connected to a Real-Time target?

For Linux RT controller see Using FTP With and NI Linux Real-Time Target  instead. 

To access external USB hard drives, you must install USB support to your real-time controller.

NI Real-Time (RT) systems refer to external CompactFlash (CF) drives by drive letter D: and external USB drives by drive letter U: . FTP to the drive letter of interest by using one of the following methods.
To find out which OS gets used on your CompactRIO controller, see Real-Time Controllers and Real-Time Operating System Compatibility

Measurement & Automation Explorer (MAX) 
Open up MAX (Start»National Instruments»Measurement & Automation Explorer) and find your device under Remote Systems on the left. If you right click on your system name, you should choose the option called File Transfer, as shown in the picture below:

File Transfer.jfif

After you choose this option, the File Transfer Wizard will pop up. This is your user interface between the remote system and your computer. The picture below shows what the File Transfer Wizard looks like:
 

File Transfer Wizard.png


The Current Remote and Local Directory are the filepaths of the current highlighted folder. If you want to transfer a file to your computer, then you would highlight the file under Current Remote Directory and choose the drive on your computer under Current Local Directory and hit the To Local button. You would hit the To Remote to do the opposite (change the directories and file paths first though). You can also add folders by hitting the button called New Folder to the right of the directory you want it to be in. The folders need to already exist if you want to programmatically write to them in LabVIEW. See Related Links for more details.

You can access the U: drive from this window; however, you will not be able browse to it. To access the U: drive, type /U:/ in Current Remote Directory as shown below. The contents of the external USB drive will then appear and you can then browse through the files on the drive.

The following examples use drive letter D:, and illustrate how to FTP to the CF. Replace IP Address with the IP address or DNS name of the RT system.


Internet Explorer
  1. Launch Internet Explorer Start » Programs » Internet Explorer
  2. In the Address bar, type ftp://<IP Address>/D:/

Windows Explorer
  1. Open a Windows Explorer Window Start » Run » explorer » OK
  2. In the Address bar, type ftp://<IP Address>/D:/

Windows Command Line FTP Client
  1. Open a Command Window Start » Run » cmd » OK
  2. Type ftp IP address
    • Enter the user name and password if prompted. By default, both values are blank
  3. The connection is made to the primary drive, letter C:
  4. To access the CF card, type cd d: and press Enter
  5. Type and press Enter to get a list of commands. Below is a list of common commands
    • get filename downloads filename from the target
    • put filename uploads filename to the target
    • quit closes the session
Note: Depending on the CompactRIO Controller OS please use the correct file path syntax.

Additional Information

Note: The RT operating system supports names that follow the 8.3 (filename.ext) convention. File names must conform to this convention including the following restrictions.

  • Have no spaces
  • Have at most eight characters before a period
  • Have at most three characters after a period

Caution: Do not remove or insert external storage media in hazardous locations while the system is powered (do not hot swap in hazlocs). Do not remove external storage media while the system is writing or reading from the media.