Build enabled
This commit is contained in:
@ -4,16 +4,16 @@ namespace Tidstagning
|
||||
{
|
||||
class Entry
|
||||
{
|
||||
enum Score
|
||||
public enum Score
|
||||
{
|
||||
-,
|
||||
Score,
|
||||
DNC,
|
||||
DNS,
|
||||
OCS,
|
||||
DNF,
|
||||
RET,
|
||||
DSQ
|
||||
}
|
||||
};
|
||||
//Competitors name
|
||||
public string Name { get; set; }
|
||||
//Competitor identifier (Sailnumber/Bownumber or other)
|
||||
@ -21,7 +21,7 @@ namespace Tidstagning
|
||||
//DateTime the user completed the course
|
||||
public DateTime Completed_Time { get; set; }
|
||||
//Retirement score.
|
||||
public Score Code {get; set; }
|
||||
public Score Code { get; set; }
|
||||
|
||||
public Entry(string name, string number)
|
||||
{
|
||||
@ -37,7 +37,7 @@ namespace Tidstagning
|
||||
|
||||
public void DNF()
|
||||
{
|
||||
Code = DNF;
|
||||
Code = Score.DNF;
|
||||
this.Completed_Time = DateTime.Now;
|
||||
}
|
||||
}
|
||||
|
@ -22,20 +22,23 @@ namespace Tidstagning
|
||||
{
|
||||
}
|
||||
|
||||
public Open(string ComPort)
|
||||
public bool Open(string ComPort)
|
||||
{
|
||||
if(SerialPort.IsOpen())
|
||||
SerialPort.Close();
|
||||
if (com.IsOpen)
|
||||
{
|
||||
Close();
|
||||
}
|
||||
|
||||
com.PortName = ComPort;
|
||||
com.BaudRate = 9600;
|
||||
try
|
||||
{
|
||||
com.Open();
|
||||
return true;
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user