Exemplo n.º 1
0
 /// <summary>
 /// Simplified constructor. Does not setup debug printing.
 /// </summary>
 public Controller()
 {
     Port = new Clide.Port();
     Tx   = new Clide.Tx(Port);
     Rx   = new Clide.Rx(Port);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Base constructor.
 /// </summary>
 /// <param name="debugPrint"></param>
 public Controller(Action <string> debugPrint)
 {
     Port = new Clide.Port();
     Tx   = new Clide.Tx(Port, debugPrint);
     Rx   = new Clide.Rx(Port);
 }