Project

General

Profile

Bug #6567 » uv5r_uv-6_test6.py

Jim Unroe, 08/31/2020 02:47 PM

 
1
# Copyright 2012 Dan Smith <dsmith@danplanet.com>
2
#
3
# This program is free software: you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation, either version 2 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
15

    
16
import struct
17
import time
18
import os
19
import logging
20

    
21
from chirp import chirp_common, errors, util, directory, memmap
22
from chirp import bitwise
23
from chirp.settings import RadioSetting, RadioSettingGroup, \
24
    RadioSettingValueInteger, RadioSettingValueList, \
25
    RadioSettingValueBoolean, RadioSettingValueString, \
26
    RadioSettingValueFloat, InvalidValueError, RadioSettings
27
from textwrap import dedent
28

    
29
LOG = logging.getLogger(__name__)
30

    
31
MEM_FORMAT = """
32
#seekto 0x0008;
33
struct {
34
  lbcd rxfreq[4];
35
  lbcd txfreq[4];
36
  ul16 rxtone;
37
  ul16 txtone;
38
  u8 unused1:3,
39
     isuhf:1,
40
     scode:4;
41
  u8 unknown1:7,
42
     txtoneicon:1;
43
  u8 mailicon:3,
44
     unknown2:3,
45
     lowpower:2;
46
  u8 unknown3:1,
47
     wide:1,
48
     unknown4:2,
49
     bcl:1,
50
     scan:1,
51
     pttid:2;
52
} memory[128];
53

    
54
#seekto 0x0B08;
55
struct {
56
  u8 code[5];
57
  u8 unused[11];
58
} pttid[15];
59

    
60
#seekto 0x0C88;
61
struct {
62
  u8 code222[3];
63
  u8 unused222[2];
64
  u8 code333[3];
65
  u8 unused333[2];
66
  u8 alarmcode[3];
67
  u8 unused119[2];
68
  u8 unknown1;
69
  u8 code555[3];
70
  u8 unused555[2];
71
  u8 code666[3];
72
  u8 unused666[2];
73
  u8 code777[3];
74
  u8 unused777[2];
75
  u8 unknown2;
76
  u8 code60606[5];
77
  u8 code70707[5];
78
  u8 code[5];
79
  u8 unused1:6,
80
     aniid:2;
81
  u8 unknown[2];
82
  u8 dtmfon;
83
  u8 dtmfoff;
84
} ani;
85

    
86
#seekto 0x0E28;
87
struct {
88
  u8 squelch;
89
  u8 step;
90
  u8 unknown1;
91
  u8 save;
92
  u8 vox;
93
  u8 unknown2;
94
  u8 abr;
95
  u8 tdr;
96
  u8 beep;
97
  u8 timeout;
98
  u8 unknown3[4];
99
  u8 voice;
100
  u8 unknown4;
101
  u8 dtmfst;
102
  u8 unknown5;
103
  u8 unknown12:6,
104
     screv:2;
105
  u8 pttid;
106
  u8 pttlt;
107
  u8 mdfa;
108
  u8 mdfb;
109
  u8 bcl;
110
  u8 autolk; // NOTE: The UV-6 calls this byte voxenable, but the UV-5R
111
             // calls it autolk. Since this is a minor difference, it will
112
             // be referred to by the wrong name for the UV-6.
113
  u8 sftd;
114
  u8 unknown6[3];
115
  u8 wtled;
116
  u8 rxled;
117
  u8 txled;
118
  u8 almod;
119
  u8 band;
120
  u8 tdrab;
121
  u8 ste;
122
  u8 rpste;
123
  u8 rptrl;
124
  u8 ponmsg;
125
  u8 roger;
126
  u8 rogerrx;
127
  u8 tdrch; // NOTE: The UV-82HP calls this byte rtone, but the UV-6
128
            // calls it tdrch. Since this is a minor difference, it will
129
            // be referred to by the wrong name for the UV-82HP.
130
  u8 displayab:1,
131
     unknown1:2,
132
     fmradio:1,
133
     alarm:1,
134
     unknown2:1,
135
     reset:1,
136
     menu:1;
137
  u8 unknown1:6,
138
     singleptt:1,
139
     vfomrlock:1;
140
  u8 workmode;
141
  u8 keylock;
142
} settings;
143

    
144
#seekto 0x0E7E;
145
struct {
146
  u8 unused1:1,
147
     mrcha:7;
148
  u8 unused2:1,
149
     mrchb:7;
150
} wmchannel;
151

    
152
#seekto 0x0F10;
153
struct {
154
  u8 freq[8];
155
  u8 unknown1;
156
  u8 offset[4];
157
  u8 unknown2;
158
  ul16 rxtone;
159
  ul16 txtone;
160
  u8 unused1:7,
161
     band:1;
162
  u8 unknown3;
163
  u8 unused2:2,
164
     sftd:2,
165
     scode:4;
166
  u8 unknown4;
167
  u8 unused3:1
168
     step:3,
169
     unused4:4;
170
  u8 txpower:1,
171
     widenarr:1,
172
     unknown5:4,
173
     txpower3:2;
174
} vfoa;
175

    
176
#seekto 0x0F30;
177
struct {
178
  u8 freq[8];
179
  u8 unknown1;
180
  u8 offset[4];
181
  u8 unknown2;
182
  ul16 rxtone;
183
  ul16 txtone;
184
  u8 unused1:7,
185
     band:1;
186
  u8 unknown3;
187
  u8 unused2:2,
188
     sftd:2,
189
     scode:4;
190
  u8 unknown4;
191
  u8 unused3:1
192
     step:3,
193
     unused4:4;
194
  u8 txpower:1,
195
     widenarr:1,
196
     unknown5:4,
197
     txpower3:2;
198
} vfob;
199

    
200
#seekto 0x0F56;
201
u16 fm_presets;
202

    
203
#seekto 0x1008;
204
struct {
205
  char name[7];
206
  u8 unknown2[9];
207
} names[128];
208

    
209
#seekto 0x1818;
210
struct {
211
  char line1[7];
212
  char line2[7];
213
} sixpoweron_msg;
214

    
215
#seekto 0x%04X;
216
struct {
217
  char line1[7];
218
  char line2[7];
219
} poweron_msg;
220

    
221
#seekto 0x1838;
222
struct {
223
  char line1[7];
224
  char line2[7];
225
} firmware_msg;
226

    
227
struct limit {
228
  u8 enable;
229
  bbcd lower[2];
230
  bbcd upper[2];
231
};
232

    
233
#seekto 0x1908;
234
struct {
235
  struct limit vhf;
236
  struct limit uhf;
237
} limits_new;
238

    
239
#seekto 0x1910;
240
struct {
241
  u8 unknown1[2];
242
  struct limit vhf;
243
  u8 unknown2;
244
  u8 unknown3[8];
245
  u8 unknown4[2];
246
  struct limit uhf;
247
} limits_old;
248

    
249
struct squelch {
250
  u8 sql0;
251
  u8 sql1;
252
  u8 sql2;
253
  u8 sql3;
254
  u8 sql4;
255
  u8 sql5;
256
  u8 sql6;
257
  u8 sql7;
258
  u8 sql8;
259
  u8 sql9;
260
};
261

    
262
#seekto 0x18A8;
263
struct {
264
  struct squelch vhf;
265
  u8 unknown1[6];
266
  u8 unknown2[16];
267
  struct squelch uhf;
268
} squelch_new;
269

    
270
#seekto 0x18E8;
271
struct {
272
  struct squelch vhf;
273
  u8 unknown[6];
274
  struct squelch uhf;
275
} squelch_old;
276

    
277
"""
278

    
279
# 0x1EC0 - 0x2000
280

    
281
vhf_220_radio = "\x02"
282

    
283
BASETYPE_UV5R = ["BFS", "BFB", "N5R-2", "N5R2", "N5RV", "BTS", "D5R2", "B5R2"]
284
BASETYPE_F11 = ["USA"]
285
BASETYPE_UV82 = ["US2S2", "B82S", "BF82", "N82-2", "N822"]
286
BASETYPE_BJ55 = ["BJ55"]  # needed for for the Baojie UV-55 in bjuv55.py
287
BASETYPE_UV6 = ["BF1", "UV6"]
288
BASETYPE_KT980HP = ["BFP3V3 B"]
289
BASETYPE_F8HP = ["BFP3V3 F", "N5R-3", "N5R3", "F5R3", "BFT", "N5RV"]
290
BASETYPE_UV82HP = ["N82-3", "N823", "N5R2"]
291
BASETYPE_UV82X3 = ["HN5RV01"]
292
BASETYPE_LIST = BASETYPE_UV5R + BASETYPE_F11 + BASETYPE_UV82 + \
293
    BASETYPE_BJ55 + BASETYPE_UV6 + BASETYPE_KT980HP + \
294
    BASETYPE_F8HP + BASETYPE_UV82HP + BASETYPE_UV82X3
295

    
296
AB_LIST = ["A", "B"]
297
ALMOD_LIST = ["Site", "Tone", "Code"]
298
BANDWIDTH_LIST = ["Wide", "Narrow"]
299
COLOR_LIST = ["Off", "Blue", "Orange", "Purple"]
300
DTMFSPEED_LIST = ["%s ms" % x for x in range(50, 2010, 10)]
301
DTMFST_LIST = ["OFF", "DT-ST", "ANI-ST", "DT+ANI"]
302
MODE_LIST = ["Channel", "Name", "Frequency"]
303
PONMSG_LIST = ["Full", "Message"]
304
PTTID_LIST = ["Off", "BOT", "EOT", "Both"]
305
PTTIDCODE_LIST = ["%s" % x for x in range(1, 16)]
306
RTONE_LIST = ["1000 Hz", "1450 Hz", "1750 Hz", "2100Hz"]
307
RESUME_LIST = ["TO", "CO", "SE"]
308
ROGERRX_LIST = ["Off"] + AB_LIST
309
RPSTE_LIST = ["OFF"] + ["%s" % x for x in range(1, 11)]
310
SAVE_LIST = ["Off", "1:1", "1:2", "1:3", "1:4"]
311
SCODE_LIST = ["%s" % x for x in range(1, 16)]
312
SHIFTD_LIST = ["Off", "+", "-"]
313
STEDELAY_LIST = ["OFF"] + ["%s ms" % x for x in range(100, 1100, 100)]
314
STEPS = [2.5, 5.0, 6.25, 10.0, 12.5, 25.0]
315
STEP_LIST = [str(x) for x in STEPS]
316
STEPS = [2.5, 5.0, 6.25, 10.0, 12.5, 20.0, 25.0, 50.0]
317
STEP291_LIST = [str(x) for x in STEPS]
318
TDRAB_LIST = ["Off"] + AB_LIST
319
TDRCH_LIST = ["CH%s" % x for x in range(1, 129)]
320
TIMEOUT_LIST = ["%s sec" % x for x in range(15, 615, 15)]
321
TXPOWER_LIST = ["High", "Low"]
322
TXPOWER3_LIST = ["High", "Mid", "Low"]
323
VOICE_LIST = ["Off", "English", "Chinese"]
324
VOX_LIST = ["OFF"] + ["%s" % x for x in range(1, 11)]
325
WORKMODE_LIST = ["Frequency", "Channel"]
326

    
327
SETTING_LISTS = {
328
    "almod": ALMOD_LIST,
329
    "aniid": PTTID_LIST,
330
    "displayab": AB_LIST,
331
    "dtmfst": DTMFST_LIST,
332
    "dtmfspeed": DTMFSPEED_LIST,
333
    "mdfa": MODE_LIST,
334
    "mdfb": MODE_LIST,
335
    "ponmsg": PONMSG_LIST,
336
    "pttid": PTTID_LIST,
337
    "rtone": RTONE_LIST,
338
    "rogerrx": ROGERRX_LIST,
339
    "rpste": RPSTE_LIST,
340
    "rxled": COLOR_LIST,
341
    "save": SAVE_LIST,
342
    "scode": PTTIDCODE_LIST,
343
    "screv": RESUME_LIST,
344
    "sftd": SHIFTD_LIST,
345
    "stedelay": STEDELAY_LIST,
346
    "step": STEP_LIST,
347
    "step291": STEP291_LIST,
348
    "tdrab": TDRAB_LIST,
349
    "tdrch": TDRCH_LIST,
350
    "timeout": TIMEOUT_LIST,
351
    "txled": COLOR_LIST,
352
    "txpower": TXPOWER_LIST,
353
    "txpower3": TXPOWER3_LIST,
354
    "voice": VOICE_LIST,
355
    "vox": VOX_LIST,
356
    "widenarr": BANDWIDTH_LIST,
357
    "workmode": WORKMODE_LIST,
358
    "wtled": COLOR_LIST
359
}
360

    
361

    
362
def _do_status(radio, block):
363
    status = chirp_common.Status()
364
    status.msg = "Cloning"
365
    status.cur = block
366
    status.max = radio.get_memsize()
367
    radio.status_fn(status)
368

    
369
UV5R_MODEL_ORIG = "\x50\xBB\xFF\x01\x25\x98\x4D"
370
UV5R_MODEL_291 = "\x50\xBB\xFF\x20\x12\x07\x25"
371
UV5R_MODEL_F11 = "\x50\xBB\xFF\x13\xA1\x11\xDD"
372
UV5R_MODEL_UV82 = "\x50\xBB\xFF\x20\x13\x01\x05"
373
UV5R_MODEL_UV6 = "\x50\xBB\xFF\x20\x12\x08\x23"
374
UV5R_MODEL_UV6_ORIG = "\x50\xBB\xFF\x12\x03\x98\x4D"
375
UV5R_MODEL_A58 = "\x50\xBB\xFF\x20\x14\x04\x13"
376

    
377

    
378
def _upper_band_from_data(data):
379
    return data[0x03:0x04]
380

    
381

    
382
def _upper_band_from_image(radio):
383
    return _upper_band_from_data(radio.get_mmap())
384

    
385

    
386
def _firmware_version_from_data(data, version_start, version_stop):
387
    version_tag = data[version_start:version_stop]
388
    return version_tag
389

    
390

    
391
def _firmware_version_from_image(radio):
392
    version = _firmware_version_from_data(radio.get_mmap(),
393
                                          radio._fw_ver_file_start,
394
                                          radio._fw_ver_file_stop)
395
    LOG.debug("_firmware_version_from_image: " + util.hexprint(version))
396
    return version
397

    
398

    
399
def _do_ident(radio, magic, secondack=True):
400
    serial = radio.pipe
401
    serial.timeout = 1
402

    
403
    LOG.info("Sending Magic: %s" % util.hexprint(magic))
404
    for byte in magic:
405
        serial.write(byte)
406
        time.sleep(0.01)
407
    ack = serial.read(1)
408

    
409
    if ack != "\x06":
410
        if ack:
411
            LOG.debug(repr(ack))
412
        raise errors.RadioError("Radio did not respond")
413

    
414
    serial.write("\x02")
415

    
416
    # Until recently, the "ident" returned by the radios supported by this
417
    # driver have always been 8 bytes long. The image sturcture is the 8 byte
418
    # "ident" followed by the downloaded memory data. So all of the settings
419
    # structures are offset by 8 bytes. The ident returned from a UV-6 radio
420
    # can be 8 bytes (original model) or now 12 bytes.
421
    #
422
    # To accomodate this, the "ident" is now read one byte at a time until the
423
    # last byte ("\xdd") is encountered. The bytes containing the value "\x01"
424
    # are discarded to shrink the "ident" length down to 8 bytes to keep the
425
    # image data aligned with the existing settings structures.
426

    
427
    # Ok, get the response
428
    response = ""
429
    for i in range(1, 13):
430
        byte = serial.read(1)
431
        response += byte
432
        # stop reading once the last byte ("\xdd") is encountered
433
        if byte == "\xdd":
434
            break
435

    
436
    # check if response is OK
437
    if len(response) in [8, 12]:
438
        # DEBUG
439
        LOG.info("Valid response, got this:")
440
        LOG.debug(util.hexprint(response))
441
        if len(response) == 12:
442
            ident = response[0] + response[3] + response[5] + response[7:]
443
        else:
444
            ident = response
445
    else:
446
        # bad response
447
        msg = "Unexpected response, got this:"
448
        msg += util.hexprint(response)
449
        LOG.debug(msg)
450
        raise errors.RadioError("Unexpected response from radio.")
451

    
452
    if secondack:
453
        serial.write("\x06")
454
        ack = serial.read(1)
455
        if ack != "\x06":
456
            raise errors.RadioError("Radio refused clone")
457

    
458
    return ident
459

    
460

    
461
def _read_block(radio, start, size, first_command=False):
462
    msg = struct.pack(">BHB", ord("S"), start, size)
463
    radio.pipe.write(msg)
464

    
465
    if first_command is False:
466
        ack = radio.pipe.read(1)
467
        if ack != "\x06":
468
            raise errors.RadioError(
469
                "Radio refused to send second block 0x%04x" % start)
470

    
471
    answer = radio.pipe.read(4)
472
    if len(answer) != 4:
473
        raise errors.RadioError("Radio refused to send block 0x%04x" % start)
474

    
475
    cmd, addr, length = struct.unpack(">BHB", answer)
476
    if cmd != ord("X") or addr != start or length != size:
477
        LOG.error("Invalid answer for block 0x%04x:" % start)
478
        LOG.debug("CMD: %s  ADDR: %04x  SIZE: %02x" % (cmd, addr, length))
479
        raise errors.RadioError("Unknown response from radio")
480

    
481
    chunk = radio.pipe.read(0x40)
482
    if not chunk:
483
        raise errors.RadioError("Radio did not send block 0x%04x" % start)
484
    elif len(chunk) != size:
485
        LOG.error("Chunk length was 0x%04i" % len(chunk))
486
        raise errors.RadioError("Radio sent incomplete block 0x%04x" % start)
487

    
488
    radio.pipe.write("\x06")
489
    time.sleep(0.05)
490

    
491
    return chunk
492

    
493

    
494
def _get_radio_firmware_version(radio):
495
    if radio.MODEL == "BJ-UV55":
496
        block = _read_block(radio, 0x1FF0, 0x40, True)
497
        version = block[0:6]
498
    else:
499
        block1 = _read_block(radio, 0x1EC0, 0x40, True)
500
        block2 = _read_block(radio, 0x1F00, 0x40, False)
501
        block = block1 + block2
502
        version = block[48:62]
503
    return version
504

    
505

    
506
IDENT_BLACKLIST = {
507
    "\x50\x0D\x0C\x20\x16\x03\x28": "Radio identifies as BTECH UV-5X3",
508
}
509

    
510

    
511
def _ident_radio(radio):
512
    for magic in radio._idents:
513
        error = None
514
        try:
515
            data = _do_ident(radio, magic)
516
            return data
517
        except errors.RadioError, e:
518
            LOG.error("uv5r._ident_radio: %s", e)
519
            error = e
520
            time.sleep(2)
521

    
522
    for magic, reason in IDENT_BLACKLIST.items():
523
        try:
524
            _do_ident(radio, magic, secondack=False)
525
        except errors.RadioError as e:
526
            # No match, try the next one
527
            continue
528

    
529
        # If we got here, it means we identified the radio as
530
        # something other than one of our valid idents. Warn
531
        # the user so they can do the right thing.
532
        LOG.warning(('Identified radio as a blacklisted model '
533
                     '(details: %s)') % reason)
534
        raise errors.RadioError(('%s. Please choose the proper vendor/'
535
                                 'model and try again.') % reason)
536

    
537
    if error:
538
        raise error
539
    raise errors.RadioError("Radio did not respond")
540

    
541

    
542
def _do_download(radio):
543
    data = _ident_radio(radio)
544

    
545
    radio_version = _get_radio_firmware_version(radio)
546
    LOG.info("Radio Version is %s" % repr(radio_version))
547

    
548
    if "HN5RV" in radio_version:
549
        # A radio with HN5RV firmware has been detected. It could be a
550
        # UV-5R style radio with HIGH/LOW power levels or it could be a
551
        # BF-F8HP style radio with HIGH/MID/LOW power levels.
552
        # We are going to count on the user to make the right choice and
553
        # then append that model type to the end of the image so it can
554
        # be properly detected when loaded.
555
        append_model = True
556
    elif "\xFF" * 7 in radio_version:
557
        # A radio UV-5R style radio that reports no firmware version has
558
        # been detected.
559
        # We are going to count on the user to make the right choice and
560
        # then append that model type to the end of the image so it can
561
        # be properly detected when loaded.
562
        append_model = True
563
    elif not any(type in radio_version for type in radio._basetype):
564
        # This radio can't be properly detected by parsing its firmware
565
        # version.
566
        raise errors.RadioError("Incorrect 'Model' selected.")
567
    else:
568
        # This radio can be properly detected by parsing its firmware version.
569
        # There is no need to append its model type to the end of the image.
570
        append_model = False
571

    
572
    # Main block
573
    LOG.debug("downloading main block...")
574
    for i in range(0, 0x1800, 0x40):
575
        data += _read_block(radio, i, 0x40, False)
576
        _do_status(radio, i)
577
    _do_status(radio, radio.get_memsize())
578
    LOG.debug("done.")
579
    if radio._aux_block:
580
        LOG.debug("downloading aux block...")
581
        # Auxiliary block starts at 0x1ECO (?)
582
        for i in range(0x1EC0, 0x2000, 0x40):
583
            data += _read_block(radio, i, 0x40, False)
584

    
585
    if append_model:
586
        data += radio.MODEL.ljust(8)
587

    
588
    LOG.debug("done.")
589
    return memmap.MemoryMap(data)
590

    
591

    
592
def _send_block(radio, addr, data):
593
    msg = struct.pack(">BHB", ord("X"), addr, len(data))
594
    radio.pipe.write(msg + data)
595
    time.sleep(0.05)
596

    
597
    ack = radio.pipe.read(1)
598
    if ack != "\x06":
599
        raise errors.RadioError("Radio refused to accept block 0x%04x" % addr)
600

    
601

    
602
def _do_upload(radio):
603
    ident = _ident_radio(radio)
604
    radio_upper_band = ident[3:4]
605
    image_upper_band = _upper_band_from_image(radio)
606

    
607
    if image_upper_band == vhf_220_radio or radio_upper_band == vhf_220_radio:
608
        if image_upper_band != radio_upper_band:
609
            raise errors.RadioError("Image not supported by radio")
610

    
611
    image_version = _firmware_version_from_image(radio)
612
    radio_version = _get_radio_firmware_version(radio)
613
    LOG.info("Image Version is %s" % repr(image_version))
614
    LOG.info("Radio Version is %s" % repr(radio_version))
615

    
616
    # default ranges
617
    _ranges_main_default = [
618
        (0x0008, 0x0CF8),
619
        (0x0D08, 0x0DF8),
620
        (0x0E08, 0x1808)
621
        ]
622
    _ranges_aux_default = [
623
        (0x1EC0, 0x1EF0),
624
        ]
625

    
626
    # extra aux ranges
627
    _ranges_aux_extra = [
628
        (0x1F60, 0x1F70),
629
        (0x1F80, 0x1F90),
630
        (0x1FC0, 0x1FD0)
631
        ]
632

    
633
    if image_version == radio_version:
634
        image_matched_radio = True
635
        if image_version.startswith("HN5RV"):
636
            ranges_main = _ranges_main_default
637
            ranges_aux = _ranges_aux_default + _ranges_aux_extra
638
        elif image_version == 0xFF * 7:
639
            ranges_main = _ranges_main_default
640
            ranges_aux = _ranges_aux_default + _ranges_aux_extra
641
        else:
642
            ranges_main = radio._ranges_main
643
            ranges_aux = radio._ranges_aux
644
    elif any(type in radio_version for type in radio._basetype):
645
        image_matched_radio = False
646
        ranges_main = _ranges_main_default
647
        ranges_aux = _ranges_aux_default
648
    else:
649
        msg = ("The upload was stopped because the firmware "
650
               "version of the image (%s) does not match that "
651
               "of the radio (%s).")
652
        raise errors.RadioError(msg % (image_version, radio_version))
653

    
654
    if not radio._aux_block:
655
        image_matched_radio = True
656

    
657
    # Main block
658
    for start_addr, end_addr in ranges_main:
659
        for i in range(start_addr, end_addr, 0x10):
660
            _send_block(radio, i - 0x08, radio.get_mmap()[i:i + 0x10])
661
            _do_status(radio, i)
662
        _do_status(radio, radio.get_memsize())
663

    
664
    if len(radio.get_mmap().get_packed()) == 0x1808:
665
        LOG.info("Old image, not writing aux block")
666
        return  # Old image, no aux block
667

    
668
    # Auxiliary block at radio address 0x1EC0, our offset 0x1808
669
    for start_addr, end_addr in ranges_aux:
670
        for i in range(start_addr, end_addr, 0x10):
671
            addr = 0x1808 + (i - 0x1EC0)
672
            _send_block(radio, i, radio.get_mmap()[addr:addr + 0x10])
673

    
674
    if not image_matched_radio:
675
        msg = ("Upload finished, but the 'Other Settings' "
676
               "could not be sent because the firmware "
677
               "version of the image (%s) does not match "
678
               "that of the radio (%s).")
679
        raise errors.RadioError(msg % (image_version, radio_version))
680

    
681
UV5R_POWER_LEVELS = [chirp_common.PowerLevel("High", watts=4.00),
682
                     chirp_common.PowerLevel("Low",  watts=1.00)]
683

    
684
UV5R_POWER_LEVELS3 = [chirp_common.PowerLevel("High", watts=8.00),
685
                      chirp_common.PowerLevel("Med",  watts=4.00),
686
                      chirp_common.PowerLevel("Low",  watts=1.00)]
687

    
688
UV5R_DTCS = sorted(chirp_common.DTCS_CODES + [645])
689

    
690
UV5R_CHARSET = chirp_common.CHARSET_UPPER_NUMERIC + \
691
    "!@#$%^&*()+-=[]:\";'<>?,./"
692

    
693

    
694
def model_match(cls, data):
695
    """Match the opened/downloaded image to the correct version"""
696

    
697
    if len(data) == 0x1950:
698
        rid = data[0x1948:0x1950]
699
        return rid.startswith(cls.MODEL)
700
    elif len(data) == 0x1948:
701
        rid = data[cls._fw_ver_file_start:cls._fw_ver_file_stop]
702
        if any(type in rid for type in cls._basetype):
703
            return True
704
    else:
705
        return False
706

    
707

    
708
class BaofengUV5R(chirp_common.CloneModeRadio):
709

    
710
    """Baofeng UV-5R"""
711
    VENDOR = "Baofeng"
712
    MODEL = "UV-5R"
713
    BAUD_RATE = 9600
714

    
715
    _memsize = 0x1808
716
    _basetype = BASETYPE_UV5R
717
    _idents = [UV5R_MODEL_291,
718
               UV5R_MODEL_ORIG
719
               ]
720
    _vhf_range = (136000000, 174000000)
721
    _220_range = (220000000, 260000000)
722
    _uhf_range = (400000000, 520000000)
723
    _aux_block = True
724
    _tri_power = False
725
    _mem_params = (0x1828  # poweron_msg offset
726
                   )
727
    # offset of fw version in image file
728
    _fw_ver_file_start = 0x1838
729
    _fw_ver_file_stop = 0x1846
730

    
731
    _ranges_main = [
732
                    (0x0008, 0x1808),
733
                   ]
734
    _ranges_aux = [
735
                   (0x1EC0, 0x2000),
736
                  ]
737
    _valid_chars = UV5R_CHARSET
738

    
739
    @classmethod
740
    def get_prompts(cls):
741
        rp = chirp_common.RadioPrompts()
742
        rp.experimental = \
743
            ('Due to the fact that the manufacturer continues to '
744
             'release new versions of the firmware with obscure and '
745
             'hard-to-track changes, this driver may not work with '
746
             'your device. Thus far and to the best knowledge of the '
747
             'author, no UV-5R radios have been harmed by using CHIRP. '
748
             'However, proceed at your own risk!')
749
        rp.pre_download = _(dedent("""\
750
            1. Turn radio off.
751
            2. Connect cable to mic/spkr connector.
752
            3. Make sure connector is firmly connected.
753
            4. Turn radio on (volume may need to be set at 100%).
754
            5. Ensure that the radio is tuned to channel with no activity.
755
            6. Click OK to download image from device."""))
756
        rp.pre_upload = _(dedent("""\
757
            1. Turn radio off.
758
            2. Connect cable to mic/spkr connector.
759
            3. Make sure connector is firmly connected.
760
            4. Turn radio on (volume may need to be set at 100%).
761
            5. Ensure that the radio is tuned to channel with no activity.
762
            6. Click OK to upload image to device."""))
763
        return rp
764

    
765
    def get_features(self):
766
        rf = chirp_common.RadioFeatures()
767
        rf.has_settings = True
768
        rf.has_bank = False
769
        rf.has_cross = True
770
        rf.has_rx_dtcs = True
771
        rf.has_tuning_step = False
772
        rf.can_odd_split = True
773
        rf.valid_name_length = 7
774
        rf.valid_characters = self._valid_chars
775
        rf.valid_skips = ["", "S"]
776
        rf.valid_tmodes = ["", "Tone", "TSQL", "DTCS", "Cross"]
777
        rf.valid_cross_modes = ["Tone->Tone", "Tone->DTCS", "DTCS->Tone",
778
                                "->Tone", "->DTCS", "DTCS->", "DTCS->DTCS"]
779
        rf.valid_power_levels = UV5R_POWER_LEVELS
780
        rf.valid_duplexes = ["", "-", "+", "split", "off"]
781
        rf.valid_modes = ["FM", "NFM"]
782
        rf.valid_tuning_steps = STEPS
783

    
784
        normal_bands = [self._vhf_range, self._uhf_range]
785
        rax_bands = [self._vhf_range, self._220_range]
786

    
787
        if self._mmap is None:
788
            rf.valid_bands = [normal_bands[0], rax_bands[1], normal_bands[1]]
789
        elif not self._is_orig() and self._my_upper_band() == vhf_220_radio:
790
            rf.valid_bands = rax_bands
791
        else:
792
            rf.valid_bands = normal_bands
793
        rf.memory_bounds = (0, 127)
794
        return rf
795

    
796
    @classmethod
797
    def match_model(cls, filedata, filename):
798
        match_size = False
799
        match_model = False
800
        if len(filedata) in [0x1808, 0x1948, 0x1950]:
801
            match_size = True
802
        match_model = model_match(cls, filedata)
803

    
804
        if match_size and match_model:
805
            return True
806
        else:
807
            return False
808

    
809
    def process_mmap(self):
810
        self._memobj = bitwise.parse(MEM_FORMAT % self._mem_params, self._mmap)
811

    
812
    def sync_in(self):
813
        try:
814
            self._mmap = _do_download(self)
815
        except errors.RadioError:
816
            raise
817
        except Exception, e:
818
            raise errors.RadioError("Failed to communicate with radio: %s" % e)
819
        self.process_mmap()
820

    
821
    def sync_out(self):
822
        try:
823
            _do_upload(self)
824
        except errors.RadioError:
825
            raise
826
        except Exception, e:
827
            raise errors.RadioError("Failed to communicate with radio: %s" % e)
828

    
829
    def get_raw_memory(self, number):
830
        return repr(self._memobj.memory[number])
831

    
832
    def _is_txinh(self, _mem):
833
        raw_tx = ""
834
        for i in range(0, 4):
835
            raw_tx += _mem.txfreq[i].get_raw()
836
        return raw_tx == "\xFF\xFF\xFF\xFF"
837

    
838
    def _get_mem(self, number):
839
        return self._memobj.memory[number]
840

    
841
    def _get_nam(self, number):
842
        return self._memobj.names[number]
843

    
844
    def get_memory(self, number):
845
        _mem = self._get_mem(number)
846
        _nam = self._get_nam(number)
847

    
848
        mem = chirp_common.Memory()
849
        mem.number = number
850

    
851
        if _mem.get_raw()[0] == "\xff":
852
            mem.empty = True
853
            return mem
854

    
855
        mem.freq = int(_mem.rxfreq) * 10
856

    
857
        if self._is_txinh(_mem):
858
            mem.duplex = "off"
859
            mem.offset = 0
860
        elif int(_mem.rxfreq) == int(_mem.txfreq):
861
            mem.duplex = ""
862
            mem.offset = 0
863
        elif abs(int(_mem.rxfreq) * 10 - int(_mem.txfreq) * 10) > 70000000:
864
            mem.duplex = "split"
865
            mem.offset = int(_mem.txfreq) * 10
866
        else:
867
            mem.duplex = int(_mem.rxfreq) > int(_mem.txfreq) and "-" or "+"
868
            mem.offset = abs(int(_mem.rxfreq) - int(_mem.txfreq)) * 10
869

    
870
        for char in _nam.name:
871
            if str(char) == "\xFF":
872
                char = " "  # The UV-5R software may have 0xFF mid-name
873
            mem.name += str(char)
874
        mem.name = mem.name.rstrip()
875

    
876
        dtcs_pol = ["N", "N"]
877

    
878
        if _mem.txtone in [0, 0xFFFF]:
879
            txmode = ""
880
        elif _mem.txtone >= 0x0258:
881
            txmode = "Tone"
882
            mem.rtone = int(_mem.txtone) / 10.0
883
        elif _mem.txtone <= 0x0258:
884
            txmode = "DTCS"
885
            if _mem.txtone > 0x69:
886
                index = _mem.txtone - 0x6A
887
                dtcs_pol[0] = "R"
888
            else:
889
                index = _mem.txtone - 1
890
            mem.dtcs = UV5R_DTCS[index]
891
        else:
892
            LOG.warn("Bug: txtone is %04x" % _mem.txtone)
893

    
894
        if _mem.rxtone in [0, 0xFFFF]:
895
            rxmode = ""
896
        elif _mem.rxtone >= 0x0258:
897
            rxmode = "Tone"
898
            mem.ctone = int(_mem.rxtone) / 10.0
899
        elif _mem.rxtone <= 0x0258:
900
            rxmode = "DTCS"
901
            if _mem.rxtone >= 0x6A:
902
                index = _mem.rxtone - 0x6A
903
                dtcs_pol[1] = "R"
904
            else:
905
                index = _mem.rxtone - 1
906
            mem.rx_dtcs = UV5R_DTCS[index]
907
        else:
908
            LOG.warn("Bug: rxtone is %04x" % _mem.rxtone)
909

    
910
        if txmode == "Tone" and not rxmode:
911
            mem.tmode = "Tone"
912
        elif txmode == rxmode and txmode == "Tone" and mem.rtone == mem.ctone:
913
            mem.tmode = "TSQL"
914
        elif txmode == rxmode and txmode == "DTCS" and mem.dtcs == mem.rx_dtcs:
915
            mem.tmode = "DTCS"
916
        elif rxmode or txmode:
917
            mem.tmode = "Cross"
918
            mem.cross_mode = "%s->%s" % (txmode, rxmode)
919

    
920
        mem.dtcs_polarity = "".join(dtcs_pol)
921

    
922
        if not _mem.scan:
923
            mem.skip = "S"
924

    
925
        if self._tri_power:
926
            levels = UV5R_POWER_LEVELS3
927
        else:
928
            levels = UV5R_POWER_LEVELS
929
        try:
930
            mem.power = levels[_mem.lowpower]
931
        except IndexError:
932
            LOG.error("Radio reported invalid power level %s (in %s)" %
933
                      (_mem.lowpower, levels))
934
            mem.power = levels[0]
935

    
936
        mem.mode = _mem.wide and "FM" or "NFM"
937

    
938
        mem.extra = RadioSettingGroup("Extra", "extra")
939

    
940
        rs = RadioSetting("bcl", "BCL",
941
                          RadioSettingValueBoolean(_mem.bcl))
942
        mem.extra.append(rs)
943

    
944
        rs = RadioSetting("pttid", "PTT ID",
945
                          RadioSettingValueList(PTTID_LIST,
946
                                                PTTID_LIST[_mem.pttid]))
947
        mem.extra.append(rs)
948

    
949
        rs = RadioSetting("scode", "PTT ID Code",
950
                          RadioSettingValueList(PTTIDCODE_LIST,
951
                                                PTTIDCODE_LIST[_mem.scode]))
952
        mem.extra.append(rs)
953

    
954
        return mem
955

    
956
    def _set_mem(self, number):
957
        return self._memobj.memory[number]
958

    
959
    def _set_nam(self, number):
960
        return self._memobj.names[number]
961

    
962
    def set_memory(self, mem):
963
        _mem = self._get_mem(mem.number)
964
        _nam = self._get_nam(mem.number)
965

    
966
        if mem.empty:
967
            _mem.set_raw("\xff" * 16)
968
            _nam.set_raw("\xff" * 16)
969
            return
970

    
971
        was_empty = False
972
        # same method as used in get_memory to find
973
        # out whether a raw memory is empty
974
        if _mem.get_raw()[0] == "\xff":
975
            was_empty = True
976
            LOG.debug("UV5R: this mem was empty")
977
        else:
978
            # memorize old extra-values before erasing the whole memory
979
            # used to solve issue 4121
980
            LOG.debug("mem was not empty, memorize extra-settings")
981
            prev_bcl = _mem.bcl.get_value()
982
            prev_scode = _mem.scode.get_value()
983
            prev_pttid = _mem.pttid.get_value()
984

    
985
        _mem.set_raw("\x00" * 16)
986

    
987
        _mem.rxfreq = mem.freq / 10
988

    
989
        if mem.duplex == "off":
990
            for i in range(0, 4):
991
                _mem.txfreq[i].set_raw("\xFF")
992
        elif mem.duplex == "split":
993
            _mem.txfreq = mem.offset / 10
994
        elif mem.duplex == "+":
995
            _mem.txfreq = (mem.freq + mem.offset) / 10
996
        elif mem.duplex == "-":
997
            _mem.txfreq = (mem.freq - mem.offset) / 10
998
        else:
999
            _mem.txfreq = mem.freq / 10
1000

    
1001
        _namelength = self.get_features().valid_name_length
1002
        for i in range(_namelength):
1003
            try:
1004
                _nam.name[i] = mem.name[i]
1005
            except IndexError:
1006
                _nam.name[i] = "\xFF"
1007

    
1008
        rxmode = txmode = ""
1009
        if mem.tmode == "Tone":
1010
            _mem.txtone = int(mem.rtone * 10)
1011
            _mem.rxtone = 0
1012
        elif mem.tmode == "TSQL":
1013
            _mem.txtone = int(mem.ctone * 10)
1014
            _mem.rxtone = int(mem.ctone * 10)
1015
        elif mem.tmode == "DTCS":
1016
            rxmode = txmode = "DTCS"
1017
            _mem.txtone = UV5R_DTCS.index(mem.dtcs) + 1
1018
            _mem.rxtone = UV5R_DTCS.index(mem.dtcs) + 1
1019
        elif mem.tmode == "Cross":
1020
            txmode, rxmode = mem.cross_mode.split("->", 1)
1021
            if txmode == "Tone":
1022
                _mem.txtone = int(mem.rtone * 10)
1023
            elif txmode == "DTCS":
1024
                _mem.txtone = UV5R_DTCS.index(mem.dtcs) + 1
1025
            else:
1026
                _mem.txtone = 0
1027
            if rxmode == "Tone":
1028
                _mem.rxtone = int(mem.ctone * 10)
1029
            elif rxmode == "DTCS":
1030
                _mem.rxtone = UV5R_DTCS.index(mem.rx_dtcs) + 1
1031
            else:
1032
                _mem.rxtone = 0
1033
        else:
1034
            _mem.rxtone = 0
1035
            _mem.txtone = 0
1036

    
1037
        if txmode == "DTCS" and mem.dtcs_polarity[0] == "R":
1038
            _mem.txtone += 0x69
1039
        if rxmode == "DTCS" and mem.dtcs_polarity[1] == "R":
1040
            _mem.rxtone += 0x69
1041

    
1042
        _mem.scan = mem.skip != "S"
1043
        _mem.wide = mem.mode == "FM"
1044

    
1045
        if mem.power:
1046
            if self._tri_power:
1047
                levels = [str(l) for l in UV5R_POWER_LEVELS3]
1048
                _mem.lowpower = levels.index(str(mem.power))
1049
            else:
1050
                _mem.lowpower = UV5R_POWER_LEVELS.index(mem.power)
1051
        else:
1052
            _mem.lowpower = 0
1053

    
1054
        if not was_empty:
1055
            # restoring old extra-settings (issue 4121
1056
            _mem.bcl.set_value(prev_bcl)
1057
            _mem.scode.set_value(prev_scode)
1058
            _mem.pttid.set_value(prev_pttid)
1059

    
1060
        for setting in mem.extra:
1061
            setattr(_mem, setting.get_name(), setting.value)
1062

    
1063
    def _is_orig(self):
1064
        version_tag = _firmware_version_from_image(self)
1065
        LOG.debug("@_is_orig, version_tag: %s", util.hexprint(version_tag))
1066
        try:
1067
            if 'BFB' in version_tag:
1068
                idx = version_tag.index("BFB") + 3
1069
                version = int(version_tag[idx:idx + 3])
1070
                return version < 291
1071
            return False
1072
        except:
1073
            pass
1074
        raise errors.RadioError("Unable to parse version string %s" %
1075
                                version_tag)
1076

    
1077
    def _my_version(self):
1078
        version_tag = _firmware_version_from_image(self)
1079
        if 'BFB' in version_tag:
1080
            idx = version_tag.index("BFB") + 3
1081
            return int(version_tag[idx:idx + 3])
1082

    
1083
        raise Exception("Unrecognized firmware version string")
1084

    
1085
    def _my_upper_band(self):
1086
        band_tag = _upper_band_from_image(self)
1087
        return band_tag
1088

    
1089
    def _get_settings(self):
1090
        _ani = self._memobj.ani
1091
        _fm_presets = self._memobj.fm_presets
1092
        _settings = self._memobj.settings
1093
        _squelch = self._memobj.squelch_new
1094
        _vfoa = self._memobj.vfoa
1095
        _vfob = self._memobj.vfob
1096
        _wmchannel = self._memobj.wmchannel
1097
        basic = RadioSettingGroup("basic", "Basic Settings")
1098
        advanced = RadioSettingGroup("advanced", "Advanced Settings")
1099

    
1100
        group = RadioSettings(basic, advanced)
1101

    
1102
        rs = RadioSetting("squelch", "Carrier Squelch Level",
1103
                          RadioSettingValueInteger(0, 9, _settings.squelch))
1104
        basic.append(rs)
1105

    
1106
        rs = RadioSetting("save", "Battery Saver",
1107
                          RadioSettingValueList(
1108
                              SAVE_LIST, SAVE_LIST[_settings.save]))
1109
        basic.append(rs)
1110

    
1111
        rs = RadioSetting("vox", "VOX Sensitivity",
1112
                          RadioSettingValueList(
1113
                              VOX_LIST, VOX_LIST[_settings.vox]))
1114
        advanced.append(rs)
1115

    
1116
        if self.MODEL == "UV-6":
1117
            # NOTE: The UV-6 calls this byte voxenable, but the UV-5R calls it
1118
            # autolk. Since this is a minor difference, it will be referred to
1119
            # by the wrong name for the UV-6.
1120
            rs = RadioSetting("autolk", "Vox",
1121
                              RadioSettingValueBoolean(_settings.autolk))
1122
            advanced.append(rs)
1123

    
1124
        if self.MODEL != "UV-6":
1125
            rs = RadioSetting("abr", "Backlight Timeout",
1126
                              RadioSettingValueInteger(0, 24, _settings.abr))
1127
            basic.append(rs)
1128

    
1129
        rs = RadioSetting("tdr", "Dual Watch",
1130
                          RadioSettingValueBoolean(_settings.tdr))
1131
        advanced.append(rs)
1132

    
1133
        if self.MODEL == "UV-6":
1134
            rs = RadioSetting("tdrch", "Dual Watch Channel",
1135
                              RadioSettingValueList(
1136
                                  TDRCH_LIST, TDRCH_LIST[_settings.tdrch]))
1137
            advanced.append(rs)
1138

    
1139
            rs = RadioSetting("tdrab", "Dual Watch TX Priority",
1140
                              RadioSettingValueBoolean(_settings.tdrab))
1141
            advanced.append(rs)
1142
        else:
1143
            rs = RadioSetting("tdrab", "Dual Watch TX Priority",
1144
                              RadioSettingValueList(
1145
                                  TDRAB_LIST, TDRAB_LIST[_settings.tdrab]))
1146
            advanced.append(rs)
1147

    
1148
        if self.MODEL == "UV-6":
1149
            rs = RadioSetting("alarm", "Alarm Sound",
1150
                              RadioSettingValueBoolean(_settings.alarm))
1151
            advanced.append(rs)
1152

    
1153
        if _settings.almod > 0x02:
1154
            val = 0x01
1155
        else:
1156
            val = _settings.almod
1157
        rs = RadioSetting("almod", "Alarm Mode",
1158
                          RadioSettingValueList(
1159
                              ALMOD_LIST, ALMOD_LIST[val]))
1160
        advanced.append(rs)
1161

    
1162
        rs = RadioSetting("beep", "Beep",
1163
                          RadioSettingValueBoolean(_settings.beep))
1164
        basic.append(rs)
1165

    
1166
        rs = RadioSetting("timeout", "Timeout Timer",
1167
                          RadioSettingValueList(
1168
                              TIMEOUT_LIST, TIMEOUT_LIST[_settings.timeout]))
1169
        basic.append(rs)
1170

    
1171
        if self._is_orig() and self._my_version() < 251:
1172
            rs = RadioSetting("voice", "Voice",
1173
                              RadioSettingValueBoolean(_settings.voice))
1174
            advanced.append(rs)
1175
        else:
1176
            rs = RadioSetting("voice", "Voice",
1177
                              RadioSettingValueList(
1178
                                  VOICE_LIST, VOICE_LIST[_settings.voice]))
1179
            advanced.append(rs)
1180

    
1181
        rs = RadioSetting("screv", "Scan Resume",
1182
                          RadioSettingValueList(
1183
                              RESUME_LIST, RESUME_LIST[_settings.screv]))
1184
        advanced.append(rs)
1185

    
1186
        if self.MODEL != "UV-6":
1187
            rs = RadioSetting("mdfa", "Display Mode (A)",
1188
                              RadioSettingValueList(
1189
                                  MODE_LIST, MODE_LIST[_settings.mdfa]))
1190
            basic.append(rs)
1191

    
1192
            rs = RadioSetting("mdfb", "Display Mode (B)",
1193
                              RadioSettingValueList(
1194
                                  MODE_LIST, MODE_LIST[_settings.mdfb]))
1195
            basic.append(rs)
1196

    
1197
        rs = RadioSetting("bcl", "Busy Channel Lockout",
1198
                          RadioSettingValueBoolean(_settings.bcl))
1199
        advanced.append(rs)
1200

    
1201
        if self.MODEL != "UV-6":
1202
            rs = RadioSetting("autolk", "Automatic Key Lock",
1203
                              RadioSettingValueBoolean(_settings.autolk))
1204
            advanced.append(rs)
1205

    
1206
        rs = RadioSetting("fmradio", "Broadcast FM Radio",
1207
                          RadioSettingValueBoolean(_settings.fmradio))
1208
        advanced.append(rs)
1209

    
1210
        if self.MODEL != "UV-6":
1211
            rs = RadioSetting("wtled", "Standby LED Color",
1212
                              RadioSettingValueList(
1213
                                  COLOR_LIST, COLOR_LIST[_settings.wtled]))
1214
            basic.append(rs)
1215

    
1216
            rs = RadioSetting("rxled", "RX LED Color",
1217
                              RadioSettingValueList(
1218
                                  COLOR_LIST, COLOR_LIST[_settings.rxled]))
1219
            basic.append(rs)
1220

    
1221
            rs = RadioSetting("txled", "TX LED Color",
1222
                              RadioSettingValueList(
1223
                                  COLOR_LIST, COLOR_LIST[_settings.txled]))
1224
            basic.append(rs)
1225

    
1226
        if isinstance(self, BaofengUV82Radio):
1227
            rs = RadioSetting("roger", "Roger Beep (TX)",
1228
                              RadioSettingValueBoolean(_settings.roger))
1229
            basic.append(rs)
1230
            rs = RadioSetting("rogerrx", "Roger Beep (RX)",
1231
                              RadioSettingValueList(
1232
                                  ROGERRX_LIST,
1233
                                  ROGERRX_LIST[_settings.rogerrx]))
1234
            basic.append(rs)
1235
        else:
1236
            rs = RadioSetting("roger", "Roger Beep",
1237
                              RadioSettingValueBoolean(_settings.roger))
1238
            basic.append(rs)
1239

    
1240
        rs = RadioSetting("ste", "Squelch Tail Eliminate (HT to HT)",
1241
                          RadioSettingValueBoolean(_settings.ste))
1242
        advanced.append(rs)
1243

    
1244
        rs = RadioSetting("rpste", "Squelch Tail Eliminate (repeater)",
1245
                          RadioSettingValueList(
1246
                              RPSTE_LIST, RPSTE_LIST[_settings.rpste]))
1247
        advanced.append(rs)
1248

    
1249
        rs = RadioSetting("rptrl", "STE Repeater Delay",
1250
                          RadioSettingValueList(
1251
                              STEDELAY_LIST, STEDELAY_LIST[_settings.rptrl]))
1252
        advanced.append(rs)
1253

    
1254
        if self.MODEL != "UV-6":
1255
            rs = RadioSetting("reset", "RESET Menu",
1256
                              RadioSettingValueBoolean(_settings.reset))
1257
            advanced.append(rs)
1258

    
1259
            rs = RadioSetting("menu", "All Menus",
1260
                              RadioSettingValueBoolean(_settings.menu))
1261
            advanced.append(rs)
1262

    
1263
        if self.MODEL == "F-11":
1264
            # this is an F-11 only feature
1265
            rs = RadioSetting("vfomrlock", "VFO/MR Button",
1266
                              RadioSettingValueBoolean(_settings.vfomrlock))
1267
            advanced.append(rs)
1268

    
1269
        if isinstance(self, BaofengUV82Radio):
1270
            # this is a UV-82C only feature
1271
            rs = RadioSetting("vfomrlock", "VFO/MR Switching (UV-82C only)",
1272
                              RadioSettingValueBoolean(_settings.vfomrlock))
1273
            advanced.append(rs)
1274

    
1275
        if self.MODEL == "UV-82HP":
1276
            # this is a UV-82HP only feature
1277
            rs = RadioSetting(
1278
                "vfomrlock", "VFO/MR Switching (BTech UV-82HP only)",
1279
                RadioSettingValueBoolean(_settings.vfomrlock))
1280
            advanced.append(rs)
1281

    
1282
        if isinstance(self, BaofengUV82Radio):
1283
            # this is an UV-82C only feature
1284
            rs = RadioSetting("singleptt", "Single PTT (UV-82C only)",
1285
                              RadioSettingValueBoolean(_settings.singleptt))
1286
            advanced.append(rs)
1287

    
1288
        if self.MODEL == "UV-82HP":
1289
            # this is an UV-82HP only feature
1290
            rs = RadioSetting("singleptt", "Single PTT (BTech UV-82HP only)",
1291
                              RadioSettingValueBoolean(_settings.singleptt))
1292
            advanced.append(rs)
1293

    
1294
        if self.MODEL == "UV-82HP":
1295
            # this is an UV-82HP only feature
1296
            rs = RadioSetting(
1297
                "tdrch", "Tone Burst Frequency (BTech UV-82HP only)",
1298
                RadioSettingValueList(RTONE_LIST, RTONE_LIST[_settings.tdrch]))
1299
            advanced.append(rs)
1300

    
1301
        if len(self._mmap.get_packed()) == 0x1808:
1302
            # Old image, without aux block
1303
            return group
1304

    
1305
        if self.MODEL != "UV-6":
1306
            other = RadioSettingGroup("other", "Other Settings")
1307
            group.append(other)
1308

    
1309
            def _filter(name):
1310
                filtered = ""
1311
                for char in str(name):
1312
                    if char in chirp_common.CHARSET_ASCII:
1313
                        filtered += char
1314
                    else:
1315
                        filtered += " "
1316
                return filtered
1317

    
1318
            _msg = self._memobj.firmware_msg
1319
            val = RadioSettingValueString(0, 7, _filter(_msg.line1))
1320
            val.set_mutable(False)
1321
            rs = RadioSetting("firmware_msg.line1", "Firmware Message 1", val)
1322
            other.append(rs)
1323

    
1324
            val = RadioSettingValueString(0, 7, _filter(_msg.line2))
1325
            val.set_mutable(False)
1326
            rs = RadioSetting("firmware_msg.line2", "Firmware Message 2", val)
1327
            other.append(rs)
1328

    
1329
            _msg = self._memobj.sixpoweron_msg
1330
            rs = RadioSetting("sixpoweron_msg.line1", "6+Power-On Message 1",
1331
                              RadioSettingValueString(
1332
                                  0, 7, _filter(_msg.line1)))
1333
            other.append(rs)
1334
            rs = RadioSetting("sixpoweron_msg.line2", "6+Power-On Message 2",
1335
                              RadioSettingValueString(
1336
                                  0, 7, _filter(_msg.line2)))
1337
            other.append(rs)
1338

    
1339
            _msg = self._memobj.poweron_msg
1340
            rs = RadioSetting("poweron_msg.line1", "Power-On Message 1",
1341
                              RadioSettingValueString(
1342
                                  0, 7, _filter(_msg.line1)))
1343
            other.append(rs)
1344
            rs = RadioSetting("poweron_msg.line2", "Power-On Message 2",
1345
                              RadioSettingValueString(
1346
                                  0, 7, _filter(_msg.line2)))
1347
            other.append(rs)
1348

    
1349
            rs = RadioSetting("ponmsg", "Power-On Message",
1350
                              RadioSettingValueList(
1351
                                  PONMSG_LIST, PONMSG_LIST[_settings.ponmsg]))
1352
            other.append(rs)
1353

    
1354
            if self._is_orig():
1355
                limit = "limits_old"
1356
            else:
1357
                limit = "limits_new"
1358

    
1359
            vhf_limit = getattr(self._memobj, limit).vhf
1360
            rs = RadioSetting("%s.vhf.lower" % limit, "VHF Lower Limit (MHz)",
1361
                              RadioSettingValueInteger(1, 1000,
1362
                                                       vhf_limit.lower))
1363
            other.append(rs)
1364

    
1365
            rs = RadioSetting("%s.vhf.upper" % limit, "VHF Upper Limit (MHz)",
1366
                              RadioSettingValueInteger(1, 1000,
1367
                                                       vhf_limit.upper))
1368
            other.append(rs)
1369

    
1370
            rs = RadioSetting("%s.vhf.enable" % limit, "VHF TX Enabled",
1371
                              RadioSettingValueBoolean(vhf_limit.enable))
1372
            other.append(rs)
1373

    
1374
            uhf_limit = getattr(self._memobj, limit).uhf
1375
            rs = RadioSetting("%s.uhf.lower" % limit, "UHF Lower Limit (MHz)",
1376
                              RadioSettingValueInteger(1, 1000,
1377
                                                       uhf_limit.lower))
1378
            other.append(rs)
1379
            rs = RadioSetting("%s.uhf.upper" % limit, "UHF Upper Limit (MHz)",
1380
                              RadioSettingValueInteger(1, 1000,
1381
                                                       uhf_limit.upper))
1382
            other.append(rs)
1383
            rs = RadioSetting("%s.uhf.enable" % limit, "UHF TX Enabled",
1384
                              RadioSettingValueBoolean(uhf_limit.enable))
1385
            other.append(rs)
1386

    
1387
        if self.MODEL != "UV-6":
1388
            workmode = RadioSettingGroup("workmode", "Work Mode Settings")
1389
            group.append(workmode)
1390

    
1391
            rs = RadioSetting("displayab", "Display",
1392
                              RadioSettingValueList(
1393
                                  AB_LIST, AB_LIST[_settings.displayab]))
1394
            workmode.append(rs)
1395

    
1396
            rs = RadioSetting("workmode", "VFO/MR Mode",
1397
                              RadioSettingValueList(
1398
                                  WORKMODE_LIST,
1399
                                  WORKMODE_LIST[_settings.workmode]))
1400
            workmode.append(rs)
1401

    
1402
            rs = RadioSetting("keylock", "Keypad Lock",
1403
                              RadioSettingValueBoolean(_settings.keylock))
1404
            workmode.append(rs)
1405

    
1406
            rs = RadioSetting("wmchannel.mrcha", "MR A Channel",
1407
                              RadioSettingValueInteger(0, 127,
1408
                                                       _wmchannel.mrcha))
1409
            workmode.append(rs)
1410

    
1411
            rs = RadioSetting("wmchannel.mrchb", "MR B Channel",
1412
                              RadioSettingValueInteger(0, 127,
1413
                                                       _wmchannel.mrchb))
1414
            workmode.append(rs)
1415

    
1416
            def convert_bytes_to_freq(bytes):
1417
                real_freq = 0
1418
                for byte in bytes:
1419
                    real_freq = (real_freq * 10) + byte
1420
                return chirp_common.format_freq(real_freq * 10)
1421

    
1422
            def my_validate(value):
1423
                value = chirp_common.parse_freq(value)
1424
                if 17400000 <= value and value < 40000000:
1425
                    msg = ("Can't be between 174.00000-400.00000")
1426
                    raise InvalidValueError(msg)
1427
                return chirp_common.format_freq(value)
1428

    
1429
            def apply_freq(setting, obj):
1430
                value = chirp_common.parse_freq(str(setting.value)) / 10
1431
                obj.band = value >= 40000000
1432
                for i in range(7, -1, -1):
1433
                    obj.freq[i] = value % 10
1434
                    value /= 10
1435

    
1436
            val1a = RadioSettingValueString(0, 10,
1437
                                            convert_bytes_to_freq(_vfoa.freq))
1438
            val1a.set_validate_callback(my_validate)
1439
            rs = RadioSetting("vfoa.freq", "VFO A Frequency", val1a)
1440
            rs.set_apply_callback(apply_freq, _vfoa)
1441
            workmode.append(rs)
1442

    
1443
            val1b = RadioSettingValueString(0, 10,
1444
                                            convert_bytes_to_freq(_vfob.freq))
1445
            val1b.set_validate_callback(my_validate)
1446
            rs = RadioSetting("vfob.freq", "VFO B Frequency", val1b)
1447
            rs.set_apply_callback(apply_freq, _vfob)
1448
            workmode.append(rs)
1449

    
1450
            rs = RadioSetting("vfoa.sftd", "VFO A Shift",
1451
                              RadioSettingValueList(
1452
                                  SHIFTD_LIST, SHIFTD_LIST[_vfoa.sftd]))
1453
            workmode.append(rs)
1454

    
1455
            rs = RadioSetting("vfob.sftd", "VFO B Shift",
1456
                              RadioSettingValueList(
1457
                                  SHIFTD_LIST, SHIFTD_LIST[_vfob.sftd]))
1458
            workmode.append(rs)
1459

    
1460
            def convert_bytes_to_offset(bytes):
1461
                real_offset = 0
1462
                for byte in bytes:
1463
                    real_offset = (real_offset * 10) + byte
1464
                return chirp_common.format_freq(real_offset * 10000)
1465

    
1466
            def apply_offset(setting, obj):
1467
                value = chirp_common.parse_freq(str(setting.value)) / 10000
1468
                for i in range(3, -1, -1):
1469
                    obj.offset[i] = value % 10
1470
                    value /= 10
1471

    
1472
            val1a = RadioSettingValueString(
1473
                0, 10, convert_bytes_to_offset(_vfoa.offset))
1474
            rs = RadioSetting("vfoa.offset",
1475
                              "VFO A Offset (0.00-69.95)", val1a)
1476
            rs.set_apply_callback(apply_offset, _vfoa)
1477
            workmode.append(rs)
1478

    
1479
            val1b = RadioSettingValueString(
1480
                0, 10, convert_bytes_to_offset(_vfob.offset))
1481
            rs = RadioSetting("vfob.offset",
1482
                              "VFO B Offset (0.00-69.95)", val1b)
1483
            rs.set_apply_callback(apply_offset, _vfob)
1484
            workmode.append(rs)
1485

    
1486
            if self._tri_power:
1487
                rs = RadioSetting("vfoa.txpower3", "VFO A Power",
1488
                                  RadioSettingValueList(
1489
                                      TXPOWER3_LIST,
1490
                                      TXPOWER3_LIST[_vfoa.txpower3]))
1491
                workmode.append(rs)
1492

    
1493
                rs = RadioSetting("vfob.txpower3", "VFO B Power",
1494
                                  RadioSettingValueList(
1495
                                      TXPOWER3_LIST,
1496
                                      TXPOWER3_LIST[_vfob.txpower3]))
1497
                workmode.append(rs)
1498
            else:
1499
                rs = RadioSetting("vfoa.txpower", "VFO A Power",
1500
                                  RadioSettingValueList(
1501
                                      TXPOWER_LIST,
1502
                                      TXPOWER_LIST[_vfoa.txpower]))
1503
                workmode.append(rs)
1504

    
1505
                rs = RadioSetting("vfob.txpower", "VFO B Power",
1506
                                  RadioSettingValueList(
1507
                                      TXPOWER_LIST,
1508
                                      TXPOWER_LIST[_vfob.txpower]))
1509
                workmode.append(rs)
1510

    
1511
            rs = RadioSetting("vfoa.widenarr", "VFO A Bandwidth",
1512
                              RadioSettingValueList(
1513
                                  BANDWIDTH_LIST,
1514
                                  BANDWIDTH_LIST[_vfoa.widenarr]))
1515
            workmode.append(rs)
1516

    
1517
            rs = RadioSetting("vfob.widenarr", "VFO B Bandwidth",
1518
                              RadioSettingValueList(
1519
                                  BANDWIDTH_LIST,
1520
                                  BANDWIDTH_LIST[_vfob.widenarr]))
1521
            workmode.append(rs)
1522

    
1523
            rs = RadioSetting("vfoa.scode", "VFO A PTT-ID",
1524
                              RadioSettingValueList(
1525
                                  PTTIDCODE_LIST, PTTIDCODE_LIST[_vfoa.scode]))
1526
            workmode.append(rs)
1527

    
1528
            rs = RadioSetting("vfob.scode", "VFO B PTT-ID",
1529
                              RadioSettingValueList(
1530
                                  PTTIDCODE_LIST, PTTIDCODE_LIST[_vfob.scode]))
1531
            workmode.append(rs)
1532

    
1533
            if not self._is_orig():
1534
                rs = RadioSetting("vfoa.step", "VFO A Tuning Step",
1535
                                  RadioSettingValueList(
1536
                                      STEP291_LIST, STEP291_LIST[_vfoa.step]))
1537
                workmode.append(rs)
1538
                rs = RadioSetting("vfob.step", "VFO B Tuning Step",
1539
                                  RadioSettingValueList(
1540
                                      STEP291_LIST, STEP291_LIST[_vfob.step]))
1541
                workmode.append(rs)
1542
            else:
1543
                rs = RadioSetting("vfoa.step", "VFO A Tuning Step",
1544
                                  RadioSettingValueList(
1545
                                      STEP_LIST, STEP_LIST[_vfoa.step]))
1546
                workmode.append(rs)
1547
                rs = RadioSetting("vfob.step", "VFO B Tuning Step",
1548
                                  RadioSettingValueList(
1549
                                      STEP_LIST, STEP_LIST[_vfob.step]))
1550
                workmode.append(rs)
1551

    
1552
        fm_preset = RadioSettingGroup("fm_preset", "FM Radio Preset")
1553
        group.append(fm_preset)
1554

    
1555
        if _fm_presets <= 108.0 * 10 - 650:
1556
            preset = _fm_presets / 10.0 + 65
1557
        elif _fm_presets >= 65.0 * 10 and _fm_presets <= 108.0 * 10:
1558
            preset = _fm_presets / 10.0
1559
        else:
1560
            preset = 76.0
1561
        rs = RadioSetting("fm_presets", "FM Preset(MHz)",
1562
                          RadioSettingValueFloat(65, 108.0, preset, 0.1, 1))
1563
        fm_preset.append(rs)
1564

    
1565
        dtmf = RadioSettingGroup("dtmf", "DTMF Settings")
1566
        group.append(dtmf)
1567
        dtmfchars = "0123456789 *#ABCD"
1568

    
1569
        for i in range(0, 15):
1570
            _codeobj = self._memobj.pttid[i].code
1571
            _code = "".join([dtmfchars[x] for x in _codeobj if int(x) < 0x1F])
1572
            val = RadioSettingValueString(0, 5, _code, False)
1573
            val.set_charset(dtmfchars)
1574
            rs = RadioSetting("pttid/%i.code" % i,
1575
                              "PTT ID Code %i" % (i + 1), val)
1576

    
1577
            def apply_code(setting, obj):
1578
                code = []
1579
                for j in range(0, 5):
1580
                    try:
1581
                        code.append(dtmfchars.index(str(setting.value)[j]))
1582
                    except IndexError:
1583
                        code.append(0xFF)
1584
                obj.code = code
1585
            rs.set_apply_callback(apply_code, self._memobj.pttid[i])
1586
            dtmf.append(rs)
1587

    
1588
        _codeobj = self._memobj.ani.code
1589
        _code = "".join([dtmfchars[x] for x in _codeobj if int(x) < 0x1F])
1590
        val = RadioSettingValueString(0, 5, _code, False)
1591
        val.set_charset(dtmfchars)
1592
        rs = RadioSetting("ani.code", "ANI Code", val)
1593

    
1594
        def apply_code(setting, obj):
1595
            code = []
1596
            for j in range(0, 5):
1597
                try:
1598
                    code.append(dtmfchars.index(str(setting.value)[j]))
1599
                except IndexError:
1600
                    code.append(0xFF)
1601
            obj.code = code
1602
        rs.set_apply_callback(apply_code, _ani)
1603
        dtmf.append(rs)
1604

    
1605
        rs = RadioSetting("ani.aniid", "ANI ID",
1606
                          RadioSettingValueList(PTTID_LIST,
1607
                                                PTTID_LIST[_ani.aniid]))
1608
        dtmf.append(rs)
1609

    
1610
        _codeobj = self._memobj.ani.alarmcode
1611
        _code = "".join([dtmfchars[x] for x in _codeobj if int(x) < 0x1F])
1612
        val = RadioSettingValueString(0, 3, _code, False)
1613
        val.set_charset(dtmfchars)
1614
        rs = RadioSetting("ani.alarmcode", "Alarm Code", val)
1615

    
1616
        def apply_code(setting, obj):
1617
            alarmcode = []
1618
            for j in range(0, 3):
1619
                try:
1620
                    alarmcode.append(dtmfchars.index(str(setting.value)[j]))
1621
                except IndexError:
1622
                    alarmcode.append(0xFF)
1623
            obj.alarmcode = alarmcode
1624
        rs.set_apply_callback(apply_code, _ani)
1625
        dtmf.append(rs)
1626

    
1627
        rs = RadioSetting("dtmfst", "DTMF Sidetone",
1628
                          RadioSettingValueList(DTMFST_LIST,
1629
                                                DTMFST_LIST[_settings.dtmfst]))
1630
        dtmf.append(rs)
1631

    
1632
        if _ani.dtmfon > 0xC3:
1633
            val = 0x00
1634
        else:
1635
            val = _ani.dtmfon
1636
        rs = RadioSetting("ani.dtmfon", "DTMF Speed (on)",
1637
                          RadioSettingValueList(DTMFSPEED_LIST,
1638
                                                DTMFSPEED_LIST[val]))
1639
        dtmf.append(rs)
1640

    
1641
        if _ani.dtmfoff > 0xC3:
1642
            val = 0x00
1643
        else:
1644
            val = _ani.dtmfoff
1645
        rs = RadioSetting("ani.dtmfoff", "DTMF Speed (off)",
1646
                          RadioSettingValueList(DTMFSPEED_LIST,
1647
                                                DTMFSPEED_LIST[val]))
1648
        dtmf.append(rs)
1649

    
1650
        rs = RadioSetting("pttlt", "PTT ID Delay",
1651
                          RadioSettingValueInteger(0, 50, _settings.pttlt))
1652
        dtmf.append(rs)
1653

    
1654
        if not self._is_orig() and self._aux_block:
1655
            service = RadioSettingGroup("service", "Service Settings")
1656
            group.append(service)
1657

    
1658
            for band in ["vhf", "uhf"]:
1659
                for index in range(0, 10):
1660
                    key = "squelch_new.%s.sql%i" % (band, index)
1661
                    if band == "vhf":
1662
                        _obj = self._memobj.squelch_new.vhf
1663
                    elif band == "uhf":
1664
                        _obj = self._memobj.squelch_new.uhf
1665
                    name = "%s Squelch %i" % (band.upper(), index)
1666
                    rs = RadioSetting(key, name,
1667
                                      RadioSettingValueInteger(
1668
                                          0, 123,
1669
                                          getattr(_obj, "sql%i" % (index))))
1670
                    service.append(rs)
1671

    
1672
        return group
1673

    
1674
    def get_settings(self):
1675
        try:
1676
            return self._get_settings()
1677
        except:
1678
            import traceback
1679
            LOG.error("Failed to parse settings: %s", traceback.format_exc())
1680
            return None
1681

    
1682
    def set_settings(self, settings):
1683
        _settings = self._memobj.settings
1684
        for element in settings:
1685
            if not isinstance(element, RadioSetting):
1686
                if element.get_name() == "fm_preset":
1687
                    self._set_fm_preset(element)
1688
                else:
1689
                    self.set_settings(element)
1690
                    continue
1691
            else:
1692
                try:
1693
                    name = element.get_name()
1694
                    if "." in name:
1695
                        bits = name.split(".")
1696
                        obj = self._memobj
1697
                        for bit in bits[:-1]:
1698
                            if "/" in bit:
1699
                                bit, index = bit.split("/", 1)
1700
                                index = int(index)
1701
                                obj = getattr(obj, bit)[index]
1702
                            else:
1703
                                obj = getattr(obj, bit)
1704
                        setting = bits[-1]
1705
                    else:
1706
                        obj = _settings
1707
                        setting = element.get_name()
1708

    
1709
                    if element.has_apply_callback():
1710
                        LOG.debug("Using apply callback")
1711
                        element.run_apply_callback()
1712
                    elif element.value.get_mutable():
1713
                        LOG.debug("Setting %s = %s" % (setting, element.value))
1714
                        setattr(obj, setting, element.value)
1715
                except Exception, e:
1716
                    LOG.debug(element.get_name())
1717
                    raise
1718

    
1719
    def _set_fm_preset(self, settings):
1720
        for element in settings:
1721
            try:
1722
                val = element.value
1723
                if self._memobj.fm_presets <= 108.0 * 10 - 650:
1724
                    value = int(val.get_value() * 10 - 650)
1725
                else:
1726
                    value = int(val.get_value() * 10)
1727
                LOG.debug("Setting fm_presets = %s" % (value))
1728
                self._memobj.fm_presets = value
1729
            except Exception, e:
1730
                LOG.debug(element.get_name())
1731
                raise
1732

    
1733

    
1734
class UV5XAlias(chirp_common.Alias):
1735
    VENDOR = "Baofeng"
1736
    MODEL = "UV-5X"
1737

    
1738

    
1739
class RT5RAlias(chirp_common.Alias):
1740
    VENDOR = "Retevis"
1741
    MODEL = "RT-5R"
1742

    
1743

    
1744
class RT5RVAlias(chirp_common.Alias):
1745
    VENDOR = "Retevis"
1746
    MODEL = "RT-5RV"
1747

    
1748

    
1749
class RT5Alias(chirp_common.Alias):
1750
    VENDOR = "Retevis"
1751
    MODEL = "RT5"
1752

    
1753

    
1754
class RT5_TPAlias(chirp_common.Alias):
1755
    VENDOR = "Retevis"
1756
    MODEL = "RT5(tri-power)"
1757

    
1758

    
1759
class RH5RAlias(chirp_common.Alias):
1760
    VENDOR = "Rugged"
1761
    MODEL = "RH5R"
1762

    
1763

    
1764
class ROUV5REXAlias(chirp_common.Alias):
1765
    VENDOR = "Radioddity"
1766
    MODEL = "UV-5R EX"
1767

    
1768

    
1769
class A5RAlias(chirp_common.Alias):
1770
    VENDOR = "Ansoko"
1771
    MODEL = "A-5R"
1772

    
1773

    
1774
class TenwayUV5RPro(chirp_common.Alias):
1775
    VENDOR = 'Tenway'
1776
    MODEL = 'UV-5R Pro'
1777

    
1778

    
1779
@directory.register
1780
class BaofengUV5RGeneric(BaofengUV5R):
1781
    ALIASES = [UV5XAlias, RT5RAlias, RT5RVAlias, RT5Alias, RH5RAlias,
1782
               ROUV5REXAlias, A5RAlias, TenwayUV5RPro]
1783

    
1784

    
1785
@directory.register
1786
class BaofengF11Radio(BaofengUV5R):
1787
    VENDOR = "Baofeng"
1788
    MODEL = "F-11"
1789
    _basetype = BASETYPE_F11
1790
    _idents = [UV5R_MODEL_F11]
1791

    
1792
    def _is_orig(self):
1793
        # Override this for F11 to always return False
1794
        return False
1795

    
1796

    
1797
@directory.register
1798
class BaofengUV82Radio(BaofengUV5R):
1799
    MODEL = "UV-82"
1800
    _basetype = BASETYPE_UV82
1801
    _idents = [UV5R_MODEL_UV82]
1802
    _vhf_range = (130000000, 176000000)
1803
    _uhf_range = (400000000, 521000000)
1804
    _valid_chars = chirp_common.CHARSET_ASCII
1805

    
1806
    def _is_orig(self):
1807
        # Override this for UV82 to always return False
1808
        return False
1809

    
1810

    
1811
@directory.register
1812
class Radioddity82X3Radio(BaofengUV82Radio):
1813
    VENDOR = "Radioddity"
1814
    MODEL = "UV-82X3"
1815
    _basetype = BASETYPE_UV82X3
1816

    
1817
    def get_features(self):
1818
        rf = BaofengUV5R.get_features(self)
1819
        rf.valid_bands = [self._vhf_range,
1820
                          (200000000, 260000000),
1821
                          self._uhf_range]
1822
        return rf
1823

    
1824

    
1825
@directory.register
1826
class BaofengUV6Radio(BaofengUV5R):
1827

    
1828
    """Baofeng UV-6/UV-7"""
1829
    VENDOR = "Baofeng"
1830
    MODEL = "UV-6"
1831
    _basetype = BASETYPE_UV6
1832
    _idents = [UV5R_MODEL_UV6,
1833
               UV5R_MODEL_UV6_ORIG
1834
               ]
1835
    _aux_block = False
1836

    
1837
    def get_features(self):
1838
        rf = BaofengUV5R.get_features(self)
1839
        rf.memory_bounds = (1, 128)
1840
        return rf
1841

    
1842
    def _get_mem(self, number):
1843
        return self._memobj.memory[number - 1]
1844

    
1845
    def _get_nam(self, number):
1846
        return self._memobj.names[number - 1]
1847

    
1848
    def _set_mem(self, number):
1849
        return self._memobj.memory[number - 1]
1850

    
1851
    def _set_nam(self, number):
1852
        return self._memobj.names[number - 1]
1853

    
1854
    def _is_orig(self):
1855
        # Override this for UV6 to always return False
1856
        return False
1857

    
1858

    
1859
@directory.register
1860
class IntekKT980Radio(BaofengUV5R):
1861
    VENDOR = "Intek"
1862
    MODEL = "KT-980HP"
1863
    _basetype = BASETYPE_KT980HP
1864
    _idents = [UV5R_MODEL_291]
1865
    _vhf_range = (130000000, 180000000)
1866
    _uhf_range = (400000000, 521000000)
1867
    _tri_power = True
1868

    
1869
    def get_features(self):
1870
        rf = BaofengUV5R.get_features(self)
1871
        rf.valid_power_levels = UV5R_POWER_LEVELS3
1872
        return rf
1873

    
1874
    def _is_orig(self):
1875
        # Override this for KT980HP to always return False
1876
        return False
1877

    
1878

    
1879
class ROGA5SAlias(chirp_common.Alias):
1880
    VENDOR = "Radioddity"
1881
    MODEL = "GA-5S"
1882

    
1883

    
1884
class UV5XPAlias(chirp_common.Alias):
1885
    VENDOR = "Baofeng"
1886
    MODEL = "UV-5XP"
1887

    
1888

    
1889
@directory.register
1890
class BaofengBFF8HPRadio(BaofengUV5R):
1891
    VENDOR = "Baofeng"
1892
    MODEL = "BF-F8HP"
1893
    ALIASES = [RT5_TPAlias, ROGA5SAlias, UV5XPAlias]
1894
    _basetype = BASETYPE_F8HP
1895
    _idents = [UV5R_MODEL_291,
1896
               UV5R_MODEL_A58
1897
               ]
1898
    _vhf_range = (130000000, 180000000)
1899
    _uhf_range = (400000000, 521000000)
1900
    _tri_power = True
1901

    
1902
    def get_features(self):
1903
        rf = BaofengUV5R.get_features(self)
1904
        rf.valid_power_levels = UV5R_POWER_LEVELS3
1905
        return rf
1906

    
1907
    def _is_orig(self):
1908
        # Override this for BFF8HP to always return False
1909
        return False
1910

    
1911

    
1912
class TenwayUV82Pro(chirp_common.Alias):
1913
    VENDOR = 'Tenway'
1914
    MODEL = 'UV-82 Pro'
1915

    
1916

    
1917
@directory.register
1918
class BaofengUV82HPRadio(BaofengUV5R):
1919
    VENDOR = "Baofeng"
1920
    MODEL = "UV-82HP"
1921
    ALIASES = [TenwayUV82Pro]
1922
    _basetype = BASETYPE_UV82HP
1923
    _idents = [UV5R_MODEL_UV82]
1924
    _vhf_range = (136000000, 175000000)
1925
    _uhf_range = (400000000, 521000000)
1926
    _tri_power = True
1927

    
1928
    def get_features(self):
1929
        rf = BaofengUV5R.get_features(self)
1930
        rf.valid_power_levels = UV5R_POWER_LEVELS3
1931
        return rf
1932

    
1933
    def _is_orig(self):
1934
        # Override this for UV82HP to always return False
1935
        return False
1936

    
1937

    
1938
class TDUV5RRadio(chirp_common.Alias):
1939
    VENDOR = "TIDRADIO"
1940
    MODEL = "TD-UV5R TriPower"
1941

    
1942

    
1943
@directory.register
1944
class RadioddityUV5RX3Radio(BaofengUV5R):
1945
    VENDOR = "Radioddity"
1946
    MODEL = "UV-5RX3"
1947
    ALIASES = [TDUV5RRadio]
1948

    
1949
    def get_features(self):
1950
        rf = BaofengUV5R.get_features(self)
1951
        rf.valid_bands = [self._vhf_range,
1952
                          (200000000, 260000000),
1953
                          self._uhf_range]
1954
        return rf
1955

    
1956
    @classmethod
1957
    def match_model(cls, filename, filedata):
1958
        return False
(7-7/7)