HamBook – Rev 1

Subversion Repositories:
Rev:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HamBook.Radios.Yaesu.FT_891
{
    public class Constants
    {
        public const int BUFFER_SIZE = 4096;

        public const string EOT = ";";

        public const int POWER_ON_DELAY = 1000;

        public const int TIME_TO_WARM = 5000;
    }
}