OpenCores
URL https://opencores.org/ocsvn/usb_fpga_1_11/usb_fpga_1_11/trunk

Subversion Repositories usb_fpga_1_11

[/] [usb_fpga_1_11/] [trunk/] [java/] [ztex/] [Ztex1.java] - Diff between revs 6 and 8

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 6 Rev 8
Line 53... Line 53...
/** * The timeout for  control messages in ms. */
/** * The timeout for  control messages in ms. */
    public int controlMsgTimeout = 1000;        // in ms
    public int controlMsgTimeout = 1000;        // in ms
    private long lastVendorCommandT = 0;
    private long lastVendorCommandT = 0;
 
 
 
 
 
 
// ******* Ztex1 ***************************************************************
// ******* Ztex1 ***************************************************************
/**
/**
  * Constructs an instance from a given device.
  * Constructs an instance from a given device.
  * @param pDev The given device.
  * @param pDev The given device.
  * @throws UsbException if an communication error occurred.
  * @throws UsbException if an communication error occurred.
  */
  */
    public Ztex1 ( ZtexDevice1 pDev ) throws UsbException {
    public Ztex1 ( ZtexDevice1 pDev ) throws UsbException {
        dev = pDev;
        dev = pDev;
 
        init();
 
    }
 
 
 
// ******* init ****************************************************************
 
/**
 
  * Initializates the class.
 
  * @throws UsbException if an communication error occurred.
 
  */
 
    protected void init () throws UsbException {
        for (int i=0; i<256; i++)
        for (int i=0; i<256; i++)
            interfaceClaimed[i] = false;
            interfaceClaimed[i] = false;
 
 
        handle = LibusbJava.usb_open(dev.dev());
        handle = LibusbJava.usb_open(dev.dev());
//      if ( handle<=0 ) 
//      if ( handle<=0 ) 
Line 461... Line 468...
        }
        }
        catch ( DeviceNotSupportedException e ) {
        catch ( DeviceNotSupportedException e ) {
            throw new InvalidFirmwareException( e.getLocalizedMessage() );
            throw new InvalidFirmwareException( e.getLocalizedMessage() );
        }
        }
 
 
        handle = LibusbJava.usb_open( dev.dev() );
        init();
    }
    }
 
 
// ******* uploadFirmware ******************************************************
// ******* uploadFirmware ******************************************************
/**
/**
  * Uploads the firmware to the EZ-USB and manages the renumeration process.
  * Uploads the firmware to the EZ-USB and manages the renumeration process.
Line 536... Line 543...
        }
        }
        catch ( IOException e ) {
        catch ( IOException e ) {
            throw new FirmwareUploadException( e.getLocalizedMessage() );
            throw new FirmwareUploadException( e.getLocalizedMessage() );
        }
        }
        catch ( IhxFileDamagedException e ) {
        catch ( IhxFileDamagedException e ) {
 
            throw new FirmwareUploadException( e.getLocalizedMessage() );
 
        }
 
        return uploadFirmware( ihxFile, force );
 
    }
 
 
 
/**
 
  * Uploads the firmware to the EZ-USB and manages the renumeration process.
 
  * <p>
 
  * Before the firmware is uploaded the device is set into a reset state.
 
  * After the upload the firmware is booted and the renumeration starts.
 
  * During this process the device disappears from the bus and a new one
 
  * occurs which will be assigned to this class automatically (instead of the disappeared one).
 
  * @param ihxIn Input stream from which the ihx file is read.
 
  * @param name Name of the input.
 
  * @param force The compatibility check is skipped if true.
 
  * @throws IncompatibleFirmwareException if the given firmware is not compatible to the installed one, see {@link ZtexDevice1#compatible(int,int,int,int)} (Upload can be enforced using the <tt>force</tt> parameter)
 
  * @throws FirmwareUploadException If an error occurred while attempting to upload the firmware.
 
  * @throws UsbException if a communication error occurs.
 
  * @throws InvalidFirmwareException if ZTEX descriptor 1 is not available.
 
  * @throws DeviceLostException if a device went lost after renumeration.
 
  * @return the upload time in ms.
 
  */
 
//  returns upload time in ms
 
    public long uploadFirmware ( InputStream ihxIn, String name, boolean force ) throws IncompatibleFirmwareException, FirmwareUploadException, UsbException, InvalidFirmwareException, DeviceLostException {
 
// load the ihx file
 
        ZtexIhxFile1 ihxFile;
 
        try {
 
            ihxFile = new ZtexIhxFile1( ihxIn, name );
 
        }
 
        catch ( IOException e ) {
 
            throw new FirmwareUploadException( e.getLocalizedMessage() );
 
        }
 
        catch ( IhxFileDamagedException e ) {
            throw new FirmwareUploadException( e.getLocalizedMessage() );
            throw new FirmwareUploadException( e.getLocalizedMessage() );
        }
        }
        return uploadFirmware( ihxFile, force );
        return uploadFirmware( ihxFile, force );
    }
    }
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.