/**
 * Java file created by JControl/IDE
 *
 * @author RSt
 * @date 03.11.04 17:23
 *
 */
import java.io.IOException;
import jcontrol.comm.RS232;

public class FlashDimensions {

	static String flashDimensions = "";
	static RS232 myRS232;

    public FlashDimensions() {
    	try{
	    	myRS232 = new RS232();//default = 19200 Baud
	    }catch(IOException e){
	    }
    	flashDimensions = jcontrol.system.Management.getProperty("flash.format");
    }

    public static void main(String[] args) {
        new FlashDimensions();
        myRS232.println(flashDimensions);
        for(;;);//Stops execution of this program.
    }
}
