X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fslipway%2FBoard.java;fp=src%2Fedu%2Fberkeley%2Fslipway%2FBoard.java;h=0000000000000000000000000000000000000000;hb=88262b67660010569acf55be49e3d5f88f73bfba;hp=33e2eff7480fb656215f113dc6847714da0f65e6;hpb=9f1eaf3af0ce554e3c245fd29c0cb80748e2e0a7;p=slipway.git diff --git a/src/edu/berkeley/slipway/Board.java b/src/edu/berkeley/slipway/Board.java deleted file mode 100644 index 33e2eff..0000000 --- a/src/edu/berkeley/slipway/Board.java +++ /dev/null @@ -1,22 +0,0 @@ -package edu.berkeley.slipway; - -import edu.berkeley.obits.*; -import org.ibex.util.Log; -import java.io.*; -import java.util.*; - -public interface Board { - - /** boot the board using an md4 configuration stream */ - public abstract void boot(Reader r) throws Exception; - - /** reset the board */ - public abstract void reset() throws IOException; - - /** the UART inputstream (after loading initial config) */ - public abstract InputStream getInputStream(); - - /** the UART inputstream (after loading initial config) */ - public abstract OutputStream getOutputStream(); - -}