From 254f41d795b4c4450d58157212cfa7fd965028e8 Mon Sep 17 00:00:00 2001 From: sbahling Date: Tue, 9 Jun 2020 13:59:54 +0200 Subject: Use new tascam_fw Python module The hinawa_utils modules are not being actively maintained any longer and will not track support with recent libhinawa releases. This commit changes our code to use a fork of the Tascam parts of hinawa_utils included in a new Python module we maintain. --- README.md | 5 ++--- tascam_fw_console/console.py | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2ca80d8..c321902 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,6 @@ Requirements (4.20 or later. 5.3 or later recommended). * libhinawa 2.0.0 or later. https://github.com/takaswie/libhinawa/ -* Fork of hinawa-utils python library with updates for controlling the faders - and leds. - https://github.com/sbahling/hinawa-utils/tree/fw-1884 +* Python tascam_fw module + https://gitlab.com/tascam-fw-1884/tascam-fw diff --git a/tascam_fw_console/console.py b/tascam_fw_console/console.py index 45c1d18..5499266 100644 --- a/tascam_fw_console/console.py +++ b/tascam_fw_console/console.py @@ -33,8 +33,8 @@ import gi gi.require_version('Hinawa', '3.0') from gi.repository import Hinawa # noqa: E402 -from hinawa_utils.tscm.config_rom_parser import TscmConfigRomParser # noqa: E402 E501 -from hinawa_utils.tscm.tscm_console_unit import TscmConsoleUnit # noqa: E402 +from tascam_fw.config_rom_parser import TscmConfigRomParser # noqa: E402 E501 +from tascam_fw.tscm_console_unit import TscmConsoleUnit # noqa: E402 bits32 = '{:032b}'.format -- cgit v1.2.3