improve commenting
[slipway.git] / src / edu / berkeley / slipway / Board.java
1 package edu.berkeley.slipway;
2
3 import edu.berkeley.obits.*;
4 import org.ibex.util.Log;
5 import java.io.*;
6 import java.util.*;
7
8 public interface Board {
9
10     /** boot the board using an md4 configuration stream */
11     public abstract void boot(Reader r) throws Exception;
12
13     /** reset the board */
14     public abstract void reset() throws IOException;
15
16     /** the UART inputstream (after loading initial config) */
17     public abstract InputStream getInputStream();
18
19     /** the UART inputstream (after loading initial config) */
20     public abstract OutputStream getOutputStream();
21
22 }