Exemplo n.º 1
0
 public MemoryRecord(string _group, double _rxfreq, string _name, DSPMode _dsp_mode, bool _scan,
                     string _tune_step, FMTXMode _repeater_mode, double _fm_tx_offset_mhz, bool _ctcss_on, double _ctcss_freq,
                     int _power, int _deviation, bool _split, double _txfreq, Filter _filter, int _filterlow, int _filterhigh,
                     string _comments, AGCMode _agc_mode, int _agc_thresh)
 {
     group          = _group;
     rx_freq        = _rxfreq;
     name           = _name;
     dsp_mode       = _dsp_mode;
     scan           = _scan;
     tune_step      = _tune_step;
     repeater_mode  = _repeater_mode;
     rptr_offset    = _fm_tx_offset_mhz;
     ctcss_on       = _ctcss_on;
     ctcss_freq     = _ctcss_freq;
     power          = _power;
     deviation      = _deviation;
     split          = _split;
     tx_freq        = _txfreq;
     rx_filter      = _filter;
     rx_filter_low  = _filterlow;
     rx_filter_high = _filterhigh;
     comments       = _comments;
     agc_mode       = _agc_mode;
     agct           = _agc_thresh;
 }
Exemplo n.º 2
0
 public MemoryRecord(string _group, double _rxfreq, string _name, DSPMode _dsp_mode, bool _scan,
     string _tune_step, FMTXMode _repeater_mode, double _fm_tx_offset_mhz, bool _ctcss_on, double _ctcss_freq,
     int _power, int _deviation, bool _split, double _txfreq, Filter _filter, int _filterlow, int _filterhigh, 
     string _comments, AGCMode _agc_mode, int _agc_thresh)
 {
     group = _group;
     rx_freq = _rxfreq;
     name = _name;
     dsp_mode = _dsp_mode;
     scan = _scan;
     tune_step = _tune_step;
     repeater_mode = _repeater_mode;
     rptr_offset = _fm_tx_offset_mhz;
     ctcss_on = _ctcss_on;
     ctcss_freq = _ctcss_freq;
     power = _power;
     deviation = _deviation;
     split = _split;
     tx_freq = _txfreq;
     rx_filter = _filter;
     rx_filter_low = _filterlow;
     rx_filter_high = _filterhigh;
     comments = _comments;
     agc_mode = _agc_mode;
     agct = _agc_thresh;
 }
Exemplo n.º 3
0
        /*
         * public MemoryRecord(string _group, double _rxfreq, string _name, DSPMode _dsp_mode, bool _scan,
         *  string _tune_step, FMTXMode _repeater_mode, double _fm_tx_offset_mhz, bool _ctcss_on, double _ctcss_freq,
         *  int _power, int _deviation, bool _split, double _txfreq, Filter _filter, int _filterlow, int _filterhigh,
         *  string _comments, AGCMode _agc_mode, int _agc_thresh)
         * {
         *  group = _group;
         *  rx_freq = _rxfreq;
         *  name = _name;
         *  dsp_mode = _dsp_mode;
         *  scan = _scan;
         *  tune_step = _tune_step;
         *  repeater_mode = _repeater_mode;
         *  rptr_offset = _fm_tx_offset_mhz;
         *  ctcss_on = _ctcss_on;
         *  ctcss_freq = _ctcss_freq;
         *  power = _power;
         *  deviation = _deviation;
         *  split = _split;
         *  tx_freq = _txfreq;
         *  rx_filter = _filter;
         *  rx_filter_low = _filterlow;
         *  rx_filter_high = _filterhigh;
         *  comments = _comments;
         *  agc_mode = _agc_mode;
         *  agct = _agc_thresh;
         * }
         */
        //=====================================================================================================================
        // ke9ns add start/stop date and time and determine if repeating and if you want to record audio
        public MemoryRecord(string _group, double _rxfreq, string _name, DSPMode _dsp_mode, bool _scan,
                            string _tune_step, FMTXMode _repeater_mode, double _fm_tx_offset_mhz, bool _ctcss_on, double _ctcss_freq,
                            int _power, int _deviation, bool _split, double _txfreq, Filter _filter, int _filterlow, int _filterhigh,
                            string _comments, AGCMode _agc_mode, int _agc_thresh,
                            DateTime _StartDate, bool _ScheduleOn, int _Duration, bool _Repeating, bool _Recording, bool _Repeatingm, int _Extra) // string _StartTime,
        {
            group          = _group;
            rx_freq        = _rxfreq;
            name           = _name;
            dsp_mode       = _dsp_mode;
            scan           = _scan;
            tune_step      = _tune_step;
            repeater_mode  = _repeater_mode;
            rptr_offset    = _fm_tx_offset_mhz;
            ctcss_on       = _ctcss_on;
            ctcss_freq     = _ctcss_freq;
            power          = _power;
            deviation      = _deviation;
            split          = _split;
            tx_freq        = _txfreq;
            rx_filter      = _filter;
            rx_filter_low  = _filterlow;
            rx_filter_high = _filterhigh;
            comments       = _comments;
            agc_mode       = _agc_mode;
            agct           = _agc_thresh;

            startdate  = _StartDate;  // ke9ns add  for scheduled freq change and optional recording
            scheduleon = _ScheduleOn; // ke9ns add  for scheduled freq change and optional recording
            duration   = _Duration;   // ke9ns add  for scheduled freq change and optional recording
            repeating  = _Repeating;  // ke9ns add  for scheduled freq change and optional recording
            recording  = _Recording;  // ke9ns add  for scheduled freq change and optional recording
            repeatingm = _Repeatingm; // ke9ns add  for scheduled freq change and optional recording
            extra      = _Extra;      // ke9ns add  for scheduled freq change and optional recording

            /*
             *
             *    startdate = StartDate; // ke9ns add  for scheduled freq change and optional recording
             *    scheduleon = ScheduleOn; // ke9ns add  for scheduled freq change and optional recording
             *    duration = Duration;// ke9ns add  for scheduled freq change and optional recording
             *    repeating = Repeating;// ke9ns add  for scheduled freq change and optional recording
             *    recording = Recording;// ke9ns add  for scheduled freq change and optional recording
             *    repeatingm = Repeatingm;// ke9ns add  for scheduled freq change and optional recording
             *    extra = Extra;// ke9ns add  for scheduled freq change and optional recording
             */
        } // memoryrecord