changes: now Inference engine works fine with the EyeTracking benchmark.
[IRC.git] / Robust / src / Benchmarks / SSJava / JavaNatorInfer / RCBridge.java
1 /*
2  * PWMControl.java
3  *
4  * Copyright (c) 1993-2002 Sun Microsystems, Inc. All Rights Reserved.
5  *
6  * This software is the confidential and proprietary information of Sun
7  * Microsystems, Inc. ("Confidential Information").  You shall not
8  * disclose such Confidential Information and shall use it only in
9  * accordance with the terms of the license agreement you entered into
10  * with Sun.
11  *
12  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
13  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
14  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
15  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
16  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
17  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
18  */
19
20 /**
21  * Manage the software link between two IO port lines.
22  * <p>
23  * Copyright: Copyright (c) 2002
24  * </p>
25  * 
26  * @author Michael Gesundheit
27  * @version 1.0
28  */
29
30 public class RCBridge {
31
32   public void setManualMode() {
33     // rcLleft.activate();
34     // rcLright.activate();
35   }
36
37   public void setAutomatedMode() {
38     // rcLleft.deActivate();
39     // rcLright.deActivate();
40   }
41 }