8 lines
460 B
C#
8 lines
460 B
C#
using TheXamlGuy.Framework.Serial;
|
|
|
|
namespace TheXamlGuy.Framework.Microcontroller;
|
|
|
|
public interface IMicrocontrollerFactory
|
|
{
|
|
IMicrocontrollerContext<TRead, TReadDeserializer> Create<TSerialReader, TRead, TReadDeserializer>(IMicrocontrollerConfiguration configuration, IReadOnlyCollection<IMicrocontrollerModuleDescriptor> modules) where TSerialReader : SerialReader<TRead> where TReadDeserializer : IMicrocontrollerModuleDeserializer<TRead>, new();
|
|
} |