Editing RS232/USB Probe

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 4: Line 4:
  
 
*Name: RS232/USB Probe  
 
*Name: RS232/USB Probe  
*Status: still developing, but is working Download available see [[]]  -- after a period of inactivity some development Jan 09.
+
*Status: still developing, but is working  
 
*Technology: Java -- should run on many platforms, Windows 98 through Vista  
 
*Technology: Java -- should run on many platforms, Windows 98 through Vista  
 
*Author: russ_hensel ( where you can find an email address to reach me )
 
*Author: russ_hensel ( where you can find an email address to reach me )
 
*License: not fully determined, but open source and object code.
 
*License: not fully determined, but open source and object code.
 
This is one of a series of articles on Microcontroller Serial Communications, rooted at this site here:  [[Microcontroller Serial Communications Articles]]
 
  
 
Purpose:
 
Purpose:
  
The project is a specialized terminal emulator designed to talk to a microcontroller or similar device, either to control them or to try to deduce what its control protocol is.
+
The project is a specialized terminal emulator designed to talk to microcontrolles and similar devices either to control them or to try to deduce what there control protocol is.
  
 
Several areas are provided for input to the device.  This is typed as strings, but escape sequences also allow special characters including any ASCII character entered by its hex code.  Data is sent by pressing the send button.  Each send area has its own recieve area just to the right of it.  Also all data both sent and recieved is logged to the bottom window.  Other events in the software are also posted to the logging area.  The application has several send areas so that you can easily reissue earlier commands and easily keep frequently used commands ready to use.
 
Several areas are provided for input to the device.  This is typed as strings, but escape sequences also allow special characters including any ASCII character entered by its hex code.  Data is sent by pressing the send button.  Each send area has its own recieve area just to the right of it.  Also all data both sent and recieved is logged to the bottom window.  Other events in the software are also posted to the logging area.  The application has several send areas so that you can easily reissue earlier commands and easily keep frequently used commands ready to use.
  
 
A complete log of activity is provided both to the screen and to a log file.
 
A complete log of activity is provided both to the screen and to a log file.
 
Q: ''(Does this require a [[USB Bit Whacker]] between the PC and the device under test (DUT), or does it also work fine with direct RS-232 connection between the PC and the device under test?)'' A: No BitWacker is required for this application, it works with any serial device ( which can be the device under test ), but works best with devices that wait for a command, then they issue a response.  If you have a device to test that does not have a serial port then using a BitWacker or other microcontroller as an intermediary can be a useful approach.
 
  
 
=== Early Mock Up of Screen ===
 
=== Early Mock Up of Screen ===
Line 25: Line 21:
 
[[Image:RS232ProbeMain.png | Screen Shot ]]
 
[[Image:RS232ProbeMain.png | Screen Shot ]]
  
The screen has been enhanced, to see the current version, try the software.
+
=== Download ===
  
=== Some Features ===
+
Coming soon, for early adopters email me [[russ_hensel]]
  
*Should work on any computer/os that supports Java.  Currently using an older version of Java so that it will run on old Windows 98 computers.
+
== Installation Directions For all the Applications ( This is a first cut, more details will follow ) ==
  
*Works with RS232 and USB ( virtual RS232 )This includes USB to RS232 converters.
+
* Configure Java JDK or Java Runtime Environment as it suits you.  I am using version 1_4 to stay compatible with older machinesYou can find it round about [http://java.sun.com/j2se/1.4.2/download.html Download Java 2 Platform, Standard Edition, v 1.4.2 (J2SE)]
  
*Communication parameters set through a property ( text ) file. Name of property file can be specified at the command line, or may be changed once the application is running.
+
* Download and install the JavaComm API for your platform. Sun no longer support this for windows; ( I will change to some other support soon ) I found it at [ http://wind.lcs.mit.edu/download/ Software Download and Install] Install can be a problem because a bad installation often fails without any messages.  Here are installation directions: [http://www.xpl4java.org/xPL4Java/javacomm.html Javacomm -- Serial and Parallel port access for Java and xPL]
  
*Consists of several "mini terminals" sharing a common loging areaThis make issuing, reissuing commands and seeing old responses easy.
+
* Download RS232Etc.zip. I will provide a location soon, for testers email me [[russ_hensel]] Unzip to an installation directory ( c:\RS232Etc for example but in any case avoid directory names with embedded blanks and if you stick to c:\RS232Etc fewere modifications will be required to the bat file. ) Do not un-jar the jar file(s) ( unless you just want to mess around )  Source code will be provided in RS232Etc.jar when it it a bit more stable.  Note that renaming the .jar file to .zip will allow you to extract the files with most zip utilities that do not directly support jar files.
  
*Log data is written to a log file ( which can be specified in the property file ) as well as the screen.
+
*Edit RS32Probe.properties for your configuration, directions are in the file.
  
*After sending a command it listens for a response untill either a end of response character is recieved, a maximum length, or a maximum anount of time. ( all of these are specified for each mini terminal ).
+
*Edit the  RunRS32Probe.bat file for your configuration ( see directions in bat file ).  You may want to do this in a copy of the file so that you always have the original bat file ( or maybe we will give you two copies).
  
*Can be set to "probe" for the right communications port by sending a command to the port and looking at the response.
+
*Double click the bat file to run the program, begin debugging the installation.  If you have problems I will help you, email me with some details of the problem, include screen shots or detailed discription of error messages.
  
*Non printable and other ascii codes can be entered.
+
=== Use Details ===
 
 
*User comments may be added to the log data.
 
 
 
*Provides a framework of code for other applications like the BitWacker [[Command GUI]] or the [[Graphical Data Logger]]
 
 
 
== Download and Installation Directions ==
 
 
 
moved to [[BitWacker PIC and Other Microcontroller to Java Communications]]
 
 
 
== Use Details ==
 
  
 
Some Use Details
 
Some Use Details
  
=== Start Up ===
 
 
Before running the program make sure the property file ( RS232Probe.properties ) has the values you want to use.  This file is documented internally.  Make sure you save a backup somewhere of the original file ( there is a backup in the installed files ).  Double click the batch file to launch the program.  Startup information will appear in the Java console ( the dos window associated with the program, and in the program log area, and in the log file. )
 
Before running the program make sure the property file ( RS232Probe.properties ) has the values you want to use.  This file is documented internally.  Make sure you save a backup somewhere of the original file ( there is a backup in the installed files ).  Double click the batch file to launch the program.  Startup information will appear in the Java console ( the dos window associated with the program, and in the program log area, and in the log file. )
  
Features implemented in the property file and batch file ( see these files for more information ).
 
 
*The batch file ( perhaps named RunRS232Probe.bat ) can specify the name of the property file to use.  Otherwise the property file defaults to RS232Probe.properties.
 
 
*The com port, baud rate and other communications parameters can be set in the property file.  The virtual com ports under usb drivers ingore the baud rate and other properties, but they must be set to legal rs232 values.
 
 
*You may leave out the desired com port and have the application probe all available ports looking for a specified response.  Typically this is done by opening the port, sending the version command, and looking for a valid response from the microcontroller.
 
 
*You may specify a special command ( a string ) to be sent to the microcontroller after a port is succesfully opened to connect to it.
 
 
*You should specify the name of your logging file.
 
 
*There are other values in the property file that may be present but are used by related applications, but ignored by the RS232Probe.
 
 
=== Running ===
 
 
Fill in one of the blanks under Data ( the column by defaults contains SendMe ) and press the <Send> button.  The device response ( if any ) will appear in the corresponding Received Data field.  You can edit the data and send it again or just send it again.  The panel on the bottom shows the activity of the application >> precedes sent data, and << received data.  The rows are repeated so that you can easily switch between string sent.  
 
Fill in one of the blanks under Data ( the column by defaults contains SendMe ) and press the <Send> button.  The device response ( if any ) will appear in the corresponding Received Data field.  You can edit the data and send it again or just send it again.  The panel on the bottom shows the activity of the application >> precedes sent data, and << received data.  The rows are repeated so that you can easily switch between string sent.  
  
Line 186: Line 156:
 
Typically something like ( this is using the opening using a "probe":
 
Typically something like ( this is using the opening using a "probe":
  
:Reading property file C:\Russ\Java\RS232Etc\MrMoose.properties<br>
 
:Stream File = C:\Russ\Java\RS232Etc\MrMoose.properties<br>
 
:COM3 Opened Now Probing Response UBW FW D Version<br>
 
:<<v<br>
 
:COM6 Opened Now Probing Response UBW FW D Version<br>
 
:<<<br>
 
:COM7 Opened Now Probing Response UBW FW D Version<br>
 
:<<<br>
 
:COM10 Opened Now Probing Response UBW FW D Version<br>
 
:<<<br>
 
:COM12 Opened Now Probing Response UBW FW D Version<br>
 
:<<<br>
 
:COM13 Opened Now Probing Response UBW FW D Version<br>
 
:<<<br>
 
:Parms.initPort() failed<br>
 
:RS232 Probe initilization complete.<br>
 
  
Data transmitted to the microcontroller is preceeded with >>, data recieved is preceeded with << ( no data recieved in the above example ).
+
Reading property file C:\Russ\Java\RS232Etc\MrMoose.properties
 +
Stream File = C:\Russ\Java\RS232Etc\MrMoose.properties
 +
COM3 Opened Now Probing Response UBW FW D Version
 +
<<v
 +
COM6 Opened Now Probing Response UBW FW D Version
 +
<<
 +
COM7 Opened Now Probing Response UBW FW D Version
 +
<<
 +
COM10 Opened Now Probing Response UBW FW D Version
 +
<<
 +
COM12 Opened Now Probing Response UBW FW D Version
 +
<<
 +
COM13 Opened Now Probing Response UBW FW D Version
 +
<<
 +
Parms.initPort() failed
 +
RS232 Probe initilization complete.
  
  
Line 209: Line 178:
  
  
:Reading property file C:\Russ\Java\RS232Etc\MrMoose.properties
+
Reading property file C:\Russ\Java\RS232Etc\MrMoose.properties
:openOutputStream for rs232probe2.txt
+
openOutputStream for rs232probe2.txt
:Looking for port: COM15
+
Looking for port: COM15
:Found port: COM3
+
Found port: COM3
:Found port: COM6
+
Found port: COM6
:Found port: COM7
+
Found port: COM7
:Found port: COM10
+
Found port: COM10
:Found port: COM12
+
Found port: COM12
:Found port: COM13
+
Found port: COM13
:Found port: LPT1
+
Found port: LPT1
:Found port: LPT2
+
Found port: LPT2
:Port not found: COM15
+
Port not found: COM15
:Parms.initPort() failed
+
Parms.initPort() failed
  
 
In this case it is scanning for port 15, but it is not active so initialization fails.
 
In this case it is scanning for port 15, but it is not active so initialization fails.
Line 227: Line 196:
 
=== Special Character Translation ===
 
=== Special Character Translation ===
  
This feature allows you to put non printable characters in the strings you send.  Typically every command needs to be ended with one of these characters, most often a carriage return.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 276: Line 244:
  
 
|}
 
|}
 +
  
 
=== Enhancements ===
 
=== Enhancements ===
Line 318: Line 287:
  
 
|}
 
|}
 
 
[[RS232Probe Enhancements and Bugs]]  a list for all the related applications, will absorbe the list above soon.
 
 
[[category:Serial Communications]][[category:Microcontroller]][[category:PIC]]
 

Please note that all contributions to OpenCircuits may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see OpenCircuits:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)