Newer
Older
TestStandRepository / Software / Arduino / libraries / Arduino-Libraries / CmdMessenger / CSharp / SendAndReceiveBinaryArguments / Program.cs
namespace SendAndReceiveBinaryArguments
{
    class Program
    {
        static void Main()
        {
            // mimics Arduino calling structure
            var sendAndReceiveBinaryArguments = new SendAndReceiveBinaryArguments { RunLoop = true };
            sendAndReceiveBinaryArguments.Setup();
            while (sendAndReceiveBinaryArguments.RunLoop) sendAndReceiveBinaryArguments.Loop();
            sendAndReceiveBinaryArguments.Exit();
        }

    }
}