e1e988352567ab60444b9eeb269d7b15b56d35fb
[slipway.git] / src / com / atmel / fpslic / FpslicRaw.java
1 package com.atmel.fpslic;
2
3 import com.ftdi.usb.*;
4 import java.io.*;
5
6 /**
7  * "Raw" access to an <i>unconfigured</i> FPSLIC -- used to load the initial bitstream.
8  */
9 public interface FpslicRaw {
10
11     public InputStream  getInputStream() throws IOException;
12     public OutputStream getOutputStream() throws IOException;
13     public OutputStream getConfigStream() throws IOException;
14     public void         reset() throws IOException;
15     public void         selfTest() throws Exception;
16
17 }