Renamed solution and project file

This commit is contained in:
2022-09-26 20:52:14 +02:00
parent 9876121e06
commit ffbeb9dcb4
19 changed files with 4 additions and 4 deletions
@@ -0,0 +1,23 @@
namespace PInvokeSerialPort
{
/// <summary>
/// Stop bit settings
/// </summary>
public enum StopBits
{
/// <summary>
/// Line is asserted for 1 bit duration at end of each character
/// </summary>
One = 0,
/// <summary>
/// Line is asserted for 1.5 bit duration at end of each character
/// </summary>
OnePointFive = 1,
/// <summary>
/// Line is asserted for 2 bit duration at end of each character
/// </summary>
Two = 2
}
}