27 lines
		
	
	
		
			708 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			708 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.IO.Ports;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace vmsnet.Configures
 | |
| {
 | |
|     public class RtuConfigure
 | |
|     {
 | |
|         public int BaudRate { get; set; } = 9600;
 | |
|         public int DataBits { get; set; } = 8;
 | |
|         public Parity Parity { get; set; } = Parity.None;
 | |
|         public StopBits StopBits { get; set; } = StopBits.One;
 | |
| 
 | |
|         public RtuConfigure() { }
 | |
| 
 | |
|         public RtuConfigure(int baudRate, Parity parity, StopBits stopBits, int dataBits)
 | |
|         {
 | |
|             BaudRate = baudRate;
 | |
|             DataBits = dataBits;
 | |
|             Parity = parity;
 | |
|             StopBits = stopBits;
 | |
|         }
 | |
|     }
 | |
| } |