Project

General

Profile

New Model #280 ยป icw32.py

IC-W32 driver with E version support - Filippi Marco, 10/16/2015 10:15 AM

 
# Copyright 2011 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/>.

import logging

from chirp.drivers import icf
from chirp import chirp_common, util, directory, bitwise

LOG = logging.getLogger(__name__)

MEM_FORMAT = """
#seekto 0x%x;
struct {
bbcd freq[3];
bbcd offset[3];
u8 ctone;
u8 rtone;
char name[8];
} memory[111];

#seekto 0x%x;
struct {
u8 empty:1,
skip:1,
tmode:2,
duplex:2,
unk3:1,
am:1;
} flag[111];

#seekto 0x0E9C;
struct {
u8 unknown1:7,
right_scan_direction:1;
u8 right_scanning:1,
unknown2:7;
u8 unknown3:7,
left_scan_direction:1;
u8 left_scanning:1,
unknown4:7;
} state[1];

#seekto 0x0F20;
struct {
bbcd freq[3];
bbcd offset[3];
u8 ctone;
u8 rtone;
} callchans[2];

"""

DUPLEX = ["", "", "-", "+"]
TONE = ["", "", "Tone", "TSQL"]


def _get_special():
special = {}
for i in range(0, 5):
special["M%iA" % (i+1)] = 100 + i*2
special["M%iB" % (i+1)] = 100 + i*2 + 1
return special


@directory.register
class ICW32ARadio(icf.IcomCloneModeRadio):
"""Icom IC-W32A"""
VENDOR = "Icom"
MODEL = "IC-W32A"

_model = "\x18\x82\x00\x01"
_memsize = 4064
_endframe = "Icom Inc\x2e"

_ranges = [(0x0000, 0x0FE0, 16)]

_limits = (0, 0)
_mem_positions = (0, 1)

def get_features(self):
rf = chirp_common.RadioFeatures()
rf.memory_bounds = (0, 99)
rf.valid_bands = [self._limits]
if int(self._limits[0] / 100) == 1:
rf.valid_modes = ["FM", "AM"]
else:
rf.valid_modes = ["FM"]
rf.valid_tmodes = ["", "Tone", "TSQL"]
rf.valid_name_length = 8
rf.valid_special_chans = sorted(_get_special().keys())

rf.has_sub_devices = self.VARIANT == ""
rf.has_ctone = True
rf.has_dtcs = False
rf.has_dtcs_polarity = False
rf.has_mode = "AM" in rf.valid_modes
rf.has_tuning_step = False
rf.has_bank = False

return rf

def process_mmap(self):
fmt = MEM_FORMAT % self._mem_positions
self._memobj = bitwise.parse(fmt, self._mmap)

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

def get_memory(self, number):
if isinstance(number, str):
number = _get_special()[number]

_mem = self._memobj.memory[number]
_flg = self._memobj.flag[number]

mem = chirp_common.Memory()
mem.number = number

if number < 100:
# Normal memories
mem.skip = _flg.skip and "S" or ""
else:
# Special memories
mem.extd_number = util.get_dict_rev(_get_special(), number)

if _flg.empty:
mem.empty = True
return mem

mem.freq = chirp_common.fix_rounded_step(int(_mem.freq) * 1000)
mem.offset = int(_mem.offset) * 100
if str(_mem.name)[0] != chr(0xFF):
mem.name = str(_mem.name).rstrip()
mem.rtone = chirp_common.TONES[_mem.rtone]
mem.ctone = chirp_common.TONES[_mem.ctone]

mem.mode = _flg.am and "AM" or "FM"
mem.duplex = DUPLEX[_flg.duplex]
mem.tmode = TONE[_flg.tmode]

if number > 100:
mem.immutable = ["number", "skip", "extd_number", "name"]

return mem

def set_memory(self, mem):
_mem = self._memobj.memory[mem.number]
_flg = self._memobj.flag[mem.number]

_flg.empty = mem.empty
if mem.empty:
return

_mem.freq = mem.freq / 1000
_mem.offset = mem.offset / 100
if mem.name:
_mem.name = mem.name.ljust(8)[:8]
else:
_mem.name = "".join(["\xFF" * 8])
_mem.rtone = chirp_common.TONES.index(mem.rtone)
_mem.ctone = chirp_common.TONES.index(mem.ctone)

_flg.duplex = DUPLEX.index(mem.duplex)
_flg.tmode = TONE.index(mem.tmode)
_flg.skip = mem.skip == "S"
_flg.am = mem.mode == "AM"

if self._memobj.state.left_scanning:
LOG.debug("Canceling scan on left VFO")
self._memobj.state.left_scanning = 0
if self._memobj.state.right_scanning:
LOG.debug("Canceling scan on right VFO")
self._memobj.state.right_scanning = 0

def get_sub_devices(self):
return [ICW32ARadioVHF(self._mmap), ICW32ARadioUHF(self._mmap)]

@classmethod
def match_model(cls, filedata, filename):
if not len(filedata) == cls._memsize:
return False
return filedata[-16:] == "IcomCloneFormat3"


class ICW32ARadioVHF(ICW32ARadio):
"""ICW32 VHF subdevice"""
VARIANT = "VHF"
_limits = (118000000, 174000000)
_mem_positions = (0x0000, 0x0DC0)


class ICW32ARadioUHF(ICW32ARadio):
"""ICW32 UHF subdevice"""
VARIANT = "UHF"
_limits = (400000000, 470000000)
_mem_positions = (0x06E0, 0x0E2E)


# IC-W32E are the very same as IC-W32A but have a different _model
@directory.register
class ICW32ERadio(ICW32ARadio):
"""Icom IC-W32E"""
MODEL = "IC-W32E"

_model = "\x18\x82\x00\x02"

# an extra byte is added to distinguish file images from IC-W32A
# it will be allocated and initialized to 0x00 in _clone_from_radio
# (icf.py) but radio will not send it
# That byte is not sent to radio because the _clone_to_radio use _ranges
# for the send cycle
_memsize = ICW32ARadio._memsize + 1

def get_sub_devices(self):
# this is needed because sub devices must be of a child class
return [ICW32ERadioVHF(self._mmap), ICW32ERadioUHF(self._mmap)]

@classmethod
def match_model(cls, filedata, filename):
if not len(filedata) == cls._memsize:
return False
return filedata[-16 - 1: -1] == "IcomCloneFormat3" and \
filedata[-1] == chr(0x00)


# this is the very same as ICW32ARadioVHF but have ICW32ERadio as parent class
class ICW32ERadioVHF(ICW32ERadio):
"""ICW32 VHF subdevice"""
VARIANT = "VHF"
_limits = (118000000, 174000000)
_mem_positions = (0x0000, 0x0DC0)


# this is the very same as ICW32ARadioUHF but have ICW32ERadio as parent class
class ICW32ERadioUHF(ICW32ERadio):
"""ICW32 UHF subdevice"""
VARIANT = "UHF"
_limits = (400000000, 470000000)
_mem_positions = (0x06E0, 0x0E2E)
    (1-1/1)