From 55625b4132bc705bf32ab4ae2c2dc54878bf38d8 Mon Sep 17 00:00:00 2001 From: Jim Unroe Date: Sat, 24 Jun 2023 14:30:00 -0400 Subject: [PATCH] Retevis H777S/RT24: Support full band TX/RX - fixes #10454 The Retevis H777S (FRS) and RT24 (PMR) are physically identical radios. Only the frequencies preprogrammed at the factory are different. --- chirp/drivers/radioddity_r2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chirp/drivers/radioddity_r2.py b/chirp/drivers/radioddity_r2.py index 8cc370a48..64681c5d2 100644 --- a/chirp/drivers/radioddity_r2.py +++ b/chirp/drivers/radioddity_r2.py @@ -678,7 +678,7 @@ class RetevisRT24(RadioddityR2): VENDOR = "Retevis" MODEL = "RT24" - _pmr = True + _pmr = False # sold as PMR radio but supports full band TX/RX @directory.register @@ -687,4 +687,4 @@ class RetevisH777S(RadioddityR2): VENDOR = "Retevis" MODEL = "H777S" - _frs16 = True + _frs16 = False # sold as FRS radio but supports full band TX/RX