public override string execute(Blackfin bf, string[] args)
 {
     try
     {
         bf.SetClientConfigTimeout(uint.Parse(args[0])); // Resets the IP board, always returns false for an IP connection
         throw new ConnectionResetException("Client connection timeout has been set");
     }
     catch (FormatException)
     {
         throw new CommandArgumentException("Invalid timeout value");
     }
 }