|
# Copyright 2010 Dan Smith <dsmith@danplanet.com>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from chirp.drivers import icf
|
|
from chirp import chirp_common, directory, bitwise
|
|
|
|
MEM_FORMAT = """
|
|
struct {
|
|
u24 rxmult:3,
|
|
txmult:3,
|
|
freq:18;
|
|
u16 offset;
|
|
u16 rtone:6,
|
|
ctone:6,
|
|
unknown1:1,
|
|
mode:3;
|
|
u8 dtcs;
|
|
u8 tune_step:4,
|
|
unknown2:4;
|
|
u8 unknown3;
|
|
u8 unknown4:1,
|
|
tmode:3,
|
|
duplex:2,
|
|
dtcs_polarity:2;
|
|
char name[8];
|
|
u8 unknwon5:1,
|
|
digital_code:7;
|
|
char urcall[7];
|
|
char r1call[7];
|
|
char r2call[7];
|
|
} memory[1000];
|
|
|
|
#seekto 0xAA80;
|
|
u8 used_flags[132];
|
|
|
|
#seekto 0xAB04;
|
|
u8 skip_flags[132];
|
|
u8 pskip_flags[132];
|
|
|
|
#seekto 0xAD00;
|
|
struct {
|
|
u8 bank;
|
|
u8 index;
|
|
} bank_info[1000];
|
|
|
|
#seekto 0xB550;
|
|
struct {
|
|
char name[6];
|
|
} bank_names[26];
|
|
|
|
#seekto 0xDE56;
|
|
struct {
|
|
char call[8];
|
|
char extension[4];
|
|
} mycall[6];
|
|
|
|
struct {
|
|
char call[8];
|
|
} urcall[60];
|
|
|
|
struct {
|
|
char call[8];
|
|
char extension[4];
|
|
} rptcall[99];
|
|
|
|
#seekto 0x0FB8;
|
|
u8 name_flags[132];
|
|
|
|
"""
|
|
|
|
TMODES = ["", "Tone", "TSQL", "TSQL", "DTCS", "DTCS", "TSQL-R", "DTCS-R"]
|
|
DUPLEX = ["", "-", "+", "?3"]
|
|
DTCSP = ["NN", "NR", "RN", "RR"]
|
|
MODES = ["FM", "NFM", "WFM", "AM", "NAM", "DV"]
|
|
STEPS = [5.0, 6.25, 8.33, 9.0, 10.0, 12.5, 15.0, 20.0, 25.0, 30.0, 50.0,
|
|
100.0, 125.0, 200.0]
|
|
FREQ_MULTIPLIER = [5000, 6250, 6250, 8333, 9000]
|
|
|
|
|
|
def decode_call(sevenbytes):
|
|
"""Decode a callsign from a packed region @sevenbytes"""
|
|
if len(sevenbytes) != 7:
|
|
raise Exception("%i (!=7) bytes to decode_call" % len(sevenbytes))
|
|
|
|
i = 0
|
|
rem = 0
|
|
call = ""
|
|
for byte in [ord(x) for x in sevenbytes]:
|
|
i += 1
|
|
|
|
# Mask is 0x01, 0x03, 0x07, etc
|
|
mask = (1 << i) - 1
|
|
|
|
# Code gets the upper bits of remainder plus all but the i lower
|
|
# bits of this byte
|
|
code = (byte >> i) | rem
|
|
call += chr(code)
|
|
|
|
# Remainder for next time are the masked bits, moved to the high
|
|
# places for the next round
|
|
rem = (byte & mask) << 7 - i
|
|
|
|
# After seven trips gathering overflow bits, we should have seven
|
|
# left, which is the final character
|
|
call += chr(rem)
|
|
|
|
return call.rstrip()
|
|
|
|
|
|
def encode_call(call):
|
|
"""Encode @call into a 7-byte region"""
|
|
call = call.ljust(8)
|
|
buf = []
|
|
|
|
for i in range(0, 8):
|
|
byte = ord(call[i])
|
|
if i > 0:
|
|
last = buf[i-1]
|
|
himask = ~((1 << (7-i)) - 1) & 0x7F
|
|
last |= (byte & himask) >> (7-i)
|
|
buf[i-1] = last
|
|
else:
|
|
himask = 0
|
|
|
|
buf.append((byte & ~himask) << (i+1))
|
|
|
|
return "".join([chr(x) for x in buf[:7]])
|
|
|
|
|
|
def _decode_freq(freq, mult):
|
|
return int(freq) * FREQ_MULTIPLIER[mult]
|
|
|
|
|
|
def _encode_freq(freq):
|
|
for i, step in list(enumerate(FREQ_MULTIPLIER)):
|
|
if freq % step == 0:
|
|
return freq / step, i
|
|
raise ValueError("%d cannot be factored by multiplier table." % freq)
|
|
|
|
|
|
def _wipe_memory(mem, char):
|
|
mem.set_raw(char * (mem.size() // 8))
|
|
|
|
|
|
class ID880Bank(icf.IcomNamedBank):
|
|
"""ID880 Bank"""
|
|
def get_name(self):
|
|
_bank = self._model._radio._memobj.bank_names[self.index]
|
|
return str(_bank.name).rstrip()
|
|
|
|
def set_name(self, name):
|
|
_bank = self._model._radio._memobj.bank_names[self.index]
|
|
_bank.name = name.ljust(6)[:6]
|
|
|
|
|
|
@directory.register
|
|
class ID880Radio(icf.IcomCloneModeRadio, chirp_common.IcomDstarSupport):
|
|
"""Icom ID880"""
|
|
VENDOR = "Icom"
|
|
MODEL = "ID-880H"
|
|
|
|
_model = "\x31\x67\x00\x01"
|
|
_memsize = 62976
|
|
_endframe = "Icom Inc\x2eB1"
|
|
|
|
_ranges = [(0x0000, 0xF5c0, 32),
|
|
(0xF5c0, 0xf5e0, 16),
|
|
(0xf5e0, 0xf600, 32)]
|
|
|
|
_num_banks = 26
|
|
_bank_class = ID880Bank
|
|
_can_hispeed = True
|
|
|
|
MYCALL_LIMIT = (1, 7)
|
|
URCALL_LIMIT = (1, 60)
|
|
RPTCALL_LIMIT = (1, 99)
|
|
|
|
def _get_bank(self, loc):
|
|
_bank = self._memobj.bank_info[loc]
|
|
if _bank.bank == 0xFF:
|
|
return None
|
|
else:
|
|
return _bank.bank
|
|
|
|
def _set_bank(self, loc, bank):
|
|
_bank = self._memobj.bank_info[loc]
|
|
if bank is None:
|
|
_bank.bank = 0xFF
|
|
else:
|
|
_bank.bank = bank
|
|
|
|
def _get_bank_index(self, loc):
|
|
_bank = self._memobj.bank_info[loc]
|
|
return _bank.index
|
|
|
|
def _set_bank_index(self, loc, index):
|
|
_bank = self._memobj.bank_info[loc]
|
|
_bank.index = index
|
|
|
|
def process_mmap(self):
|
|
self._memobj = bitwise.parse(MEM_FORMAT, self._mmap)
|
|
|
|
def get_features(self):
|
|
rf = chirp_common.RadioFeatures()
|
|
rf.requires_call_lists = False
|
|
rf.has_settings = True
|
|
rf.has_bank = True
|
|
rf.has_bank_index = True
|
|
rf.has_bank_names = True
|
|
rf.valid_modes = ["FM", "NFM", "AM", "NAM", "DV"]
|
|
rf.valid_tmodes = ['', 'Tone', 'TSQL', 'DTCS', 'TSQL-R', 'DTCS-R']
|
|
rf.valid_duplexes = list(DUPLEX)
|
|
rf.valid_tuning_steps = STEPS
|
|
rf.valid_bands = [(118000000, 173995000), (230000000, 549995000),
|
|
(810000000, 823990000), (849000000, 868990000),
|
|
(894000000, 999990000)]
|
|
rf.valid_skips = ["", "S", "P"]
|
|
rf.valid_name_length = 8
|
|
rf.valid_characters = chirp_common.CHARSET_UPPER_NUMERIC + \
|
|
"!\"#$%&'()*+,-./:;<=>?@[\]^"
|
|
rf.memory_bounds = (0, 999)
|
|
return rf
|
|
|
|
def get_raw_memory(self, number):
|
|
return repr(self._memobj.memory[number])
|
|
|
|
def get_memory(self, number):
|
|
bytepos = number / 8
|
|
bitpos = 1 << (number % 8)
|
|
|
|
_mem = self._memobj.memory[number]
|
|
_used = self._memobj.used_flags[bytepos]
|
|
|
|
is_used = ((_used & bitpos) == 0)
|
|
|
|
if is_used and MODES[_mem.mode] == "DV":
|
|
mem = chirp_common.DVMemory()
|
|
mem.dv_urcall = decode_call(str(_mem.urcall))
|
|
mem.dv_rpt1call = decode_call(str(_mem.r1call))
|
|
mem.dv_rpt2call = decode_call(str(_mem.r2call))
|
|
else:
|
|
mem = chirp_common.Memory()
|
|
|
|
mem.number = number
|
|
|
|
if number < 1000:
|
|
_skip = self._memobj.skip_flags[bytepos]
|
|
_pskip = self._memobj.pskip_flags[bytepos]
|
|
if _skip & bitpos:
|
|
mem.skip = "S"
|
|
elif _pskip & bitpos:
|
|
mem.skip = "P"
|
|
else:
|
|
pass # FIXME: Special memories
|
|
|
|
if not is_used:
|
|
mem.empty = True
|
|
return mem
|
|
|
|
mem.freq = _decode_freq(_mem.freq, _mem.rxmult)
|
|
mem.offset = _decode_freq(_mem.offset, _mem.txmult)
|
|
mem.rtone = chirp_common.TONES[_mem.rtone]
|
|
mem.ctone = chirp_common.TONES[_mem.ctone]
|
|
mem.tmode = TMODES[_mem.tmode]
|
|
mem.duplex = DUPLEX[_mem.duplex]
|
|
mem.mode = MODES[_mem.mode]
|
|
mem.dtcs = chirp_common.DTCS_CODES[_mem.dtcs]
|
|
mem.dtcs_polarity = DTCSP[_mem.dtcs_polarity]
|
|
if _mem.tune_step >= len(STEPS):
|
|
mem.tuning_step = 5.0
|
|
else:
|
|
mem.tuning_step = STEPS[_mem.tune_step]
|
|
mem.name = str(_mem.name).rstrip()
|
|
|
|
return mem
|
|
|
|
def set_memory(self, mem):
|
|
bitpos = (1 << (mem.number % 8))
|
|
bytepos = mem.number / 8
|
|
|
|
_mem = self._memobj.memory[mem.number]
|
|
_used = self._memobj.used_flags[bytepos]
|
|
_namf = self._memobj.name_flags[bytepos]
|
|
|
|
was_empty = _used & bitpos
|
|
|
|
if mem.empty:
|
|
_used |= bitpos
|
|
_wipe_memory(_mem, "\xFF")
|
|
self._set_bank(mem.number, None)
|
|
return
|
|
|
|
_used &= ~bitpos
|
|
|
|
if was_empty:
|
|
_wipe_memory(_mem, "\x00")
|
|
|
|
_mem.freq, _mem.rxmult = _encode_freq(mem.freq)
|
|
_mem.offset, _mem.txmult = _encode_freq(mem.offset)
|
|
_mem.rtone = chirp_common.TONES.index(mem.rtone)
|
|
_mem.ctone = chirp_common.TONES.index(mem.ctone)
|
|
_mem.tmode = TMODES.index(mem.tmode)
|
|
if mem.tmode == 'DTCS':
|
|
# The first index of DTCS is "bell" mode
|
|
_mem.tmode += 1
|
|
_mem.duplex = DUPLEX.index(mem.duplex)
|
|
_mem.mode = MODES.index(mem.mode)
|
|
_mem.dtcs = chirp_common.DTCS_CODES.index(mem.dtcs)
|
|
_mem.dtcs_polarity = DTCSP.index(mem.dtcs_polarity)
|
|
_mem.tune_step = STEPS.index(mem.tuning_step)
|
|
_mem.name = mem.name.ljust(8)
|
|
if mem.name.strip():
|
|
_namf |= bitpos
|
|
else:
|
|
_namf &= ~bitpos
|
|
|
|
if isinstance(mem, chirp_common.DVMemory):
|
|
_mem.urcall = encode_call(mem.dv_urcall)
|
|
_mem.r1call = encode_call(mem.dv_rpt1call)
|
|
_mem.r2call = encode_call(mem.dv_rpt2call)
|
|
|
|
if mem.number < 1000:
|
|
skip = self._memobj.skip_flags[bytepos]
|
|
pskip = self._memobj.pskip_flags[bytepos]
|
|
if mem.skip == "S":
|
|
skip |= bitpos
|
|
else:
|
|
skip &= ~bitpos
|
|
if mem.skip == "P":
|
|
pskip |= bitpos
|
|
else:
|
|
pskip &= ~bitpos
|
|
|
|
def get_urcall_list(self):
|
|
_calls = self._memobj.urcall
|
|
calls = ["CQCQCQ"]
|
|
|
|
for i in range(*self.URCALL_LIMIT):
|
|
calls.append(str(_calls[i-1].call))
|
|
|
|
return calls
|
|
|
|
def get_mycall_list(self):
|
|
_calls = self._memobj.mycall
|
|
calls = []
|
|
|
|
for i in range(*self.MYCALL_LIMIT):
|
|
calls.append(str(_calls[i-1].call))
|
|
|
|
return calls
|
|
|
|
def get_repeater_call_list(self):
|
|
_calls = self._memobj.rptcall
|
|
calls = ["*NOTUSE*"]
|
|
|
|
for _i in range(*self.RPTCALL_LIMIT):
|
|
# FIXME: Not sure where the repeater list actually is
|
|
calls.append("UNSUPRTD")
|
|
continue
|
|
|
|
return calls
|
|
|
|
@classmethod
|
|
def match_model(cls, filedata, filename):
|
|
if super().match_model(filedata, filename):
|
|
return True
|
|
# This is a horrid hack, given that people can change the GPS-A
|
|
# destination, but it should suffice in most cases until we get
|
|
# a rich container file format
|
|
return len(filedata) == cls._memsize and b"API880," in filedata
|
|
|
|
|
|
# This radio isn't really supported yet and detects as a conflict with
|
|
# the ID-880. So, don't register right now
|
|
@directory.register
|
|
class ID80Radio(ID880Radio):
|
|
"""Icom ID80"""
|
|
MODEL = "ID-80H"
|
|
|
|
_model = "\x31\x55\x00\x01"
|
|
|
|
@classmethod
|
|
def match_model(cls, filedata, filename):
|
|
if super().match_model(filedata, filename):
|
|
return True
|
|
# This is a horrid hack, given that people can change the GPS-A
|
|
# destination, but it should suffice in most cases until we get
|
|
# a rich container file format
|
|
return len(filedata) == cls._memsize and b"API80," in filedata
|
|
|
|
def get_features(self):
|
|
rf = super().get_features()
|
|
rf.valid_modes = ["FM", "NFM", "WFM", "AM", "NAM", "DV"]
|
|
rf.valid_bands = [(495000, 1000000000)]
|
|
return rf
|