using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace libMPSSEWrapper.Spi { /// /// The SpiConfiguration within the libMPSSEWrapper /// public class SpiConfiguration { /// /// Construct a new SpiConfiguration for the LibMpsseSpi Wrapper /// public static readonly SpiConfiguration ChannelZeroConfiguration = new SpiConfiguration(0); /// /// The ChannelIndex Accessor within SpiConfiguration /// public int ChannelIndex { get; private set; } /// /// The SpiConfiguration constructor within SpiConfiguration /// /// public SpiConfiguration(int channelIndex) { ChannelIndex = channelIndex; } } }