You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
722 B
23 lines
722 B
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using MultiTerm.Protocols.Types;
|
|
|
|
namespace MultiTerm.Protocols.Serial;
|
|
|
|
public partial class SerialProtocolSettingsViewModel : ProtocolSettingsViewModel, ISerialProtocolSettings
|
|
{
|
|
public override ProtocolType ProtocolType => ProtocolType.Serial;
|
|
|
|
[ObservableProperty]
|
|
private int baudRate;
|
|
//public int BaudRate { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
|
|
|
|
public string NewlineSequenceOnSend => throw new NotImplementedException();
|
|
|
|
public string NewlineOnReceivedSequence => throw new NotImplementedException();
|
|
|
|
|
|
public void AreValid()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
|