Getting Started

Initial Program for Windows

RSIPIW.exe is a Windows initial program and you can use it to initialize RSIP easily. It's the screen when RSIPIW.exe is running:

Options:

Security
Password Set password
Device Information
Version Firmware version.
DeviceID Unique ID for each device.
UartBufSize Device will send data out when buffer is full.
UartBufTimeOut Device will send out data every [UartBufTimeOut] ms.
DeviceType Host-Based/Pair-Connection Master/Pair-Connection Slave
DeviceMode More Help
UART Setup
UartBaudRate 50/75/110/300/1200/2400/4800/9600/14400/19200/38400/57600/119200 bps
UartParity No/Odd/Even/Mark/Space
UartLength 5/6/7/8 bits
UartStopBit 1/2 bit(s)
Network Setup
Remote IP Remote IP for pair-connection mode.
IP Internet IP for device.
NetMask Internet NetMask for device.
GateWay Internet GateWay for device.
TcpPort Devices have the same port will connect automaticlly.
HTTP/FTP/TELNET Service Enable/Disable services.

When options are selected ok, press "Update" to button to update RSIP setting. Press "Reset" button after RSIP is updated to enforce RSIP to reset to load new setup.

Initial Program for Console Mode

If you want to change the default value of RSIP, you can run RSIPIC.exe to initialize it. RSIPIC is a Win32 console mode program and provides a command shell. You can type "HELP" to get more command set while RSIPIC is running.

Standard Initial Flow

  1. Run RSIPIC.EXE

  2. Type "FIND" to find devices exist and you will get a device list.
    >find
    Finding devices...
    Device [22] found
    Device [23] found
    Device [91] found
    Time out
    >
    
  3. Type "GETSETUP" with the device ID got by "FIND" to get device setup.
    >getsetup 91
    OK
    >
    
  4. Type "DUMPSETUP" to view setup of device.
    >dumpsetup
    Version        : 1.02.05
    DeviceID       : 91
    DeviceType     : Host-Based
    DeviceMode     : RS232 DCE
    Password       : password
    IsLinked       : FALSE
    HttpService    : TURE
    FtpService     : TURE
    TelnetService  : TURE
    UartBufSize    : 256
    UartBufTimeOut : 100
    UartBaudRate   : 1200
    UartParity     : No
    UartLength     : 7
    UartStopBit    : 1
    RemoteIp       : 192.168.0.201
    Ip             : 192.168.0.200
    NetMask        : 255.255.255.0
    GateWay        : 192.168.0.1
    TcpPort        : 4000
    >
    
  5. Using data setup command set to set data.

  6. Type "UPDATE" to write setup back to device.
    >update 91
    OK
    >
    
  7. Type "RESET" to reset device and RSIP will load new setup.

  8. You can type "HELP" to get command set:
    >help
    Exit               Terminate program
    Ver                Show version
    Find               Find devices
    GetSetup           Get setup from device
    DumpSetup          Dump setup of buffer
    Update             Send setup to remote device
    Reset              Reset remote device
    --- Commands for Setup Data ---
    DeviceType         Set device type
    DeviceMode         Set device mode
    Passwd             Set password
    UartBufSize        Set buffer for UART in bytes
    UartBufTimeOut     Set time out for UART buffer in ms
    UartBaudRate       Set UART baud rate
    UartParity         Set UART parity
    UartLength         Set UART data length
    UartStopBit        Set UART stop bit
    RemoteIp           Set remote IP for pair-connection mode
    Ip/NetMask/GateWay Set device IP/netmask/gateway
    TcpPort            Set TCP port
    Http/Ftp/Telnet    Set HTTP/FTP/TELNET service enable/disable
    >
    

Back