From 86417420b4d7eeb68c296c1714031ed89a670d9e Mon Sep 17 00:00:00 2001 From: Michael Black W9MDB Date: Tue, 6 Oct 2020 23:10:45 -0500 Subject: [PATCH] Change PASSBAND_NORMAL back to zero to keep backwards compatiblity This will change in 5.0 --- include/hamlib/rig.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/hamlib/rig.h b/include/hamlib/rig.h index 92c0e25c5..30e6e777a 100644 --- a/include/hamlib/rig.h +++ b/include/hamlib/rig.h @@ -490,7 +490,11 @@ typedef unsigned int vfo_t; * \brief Macro for bandpass to be set to normal * \def RIG_PASSBAND_NORMAL */ +// This will change in 5.0 to it does not collide #define RIG_PASSBAND_NORMAL s_Hz(-2) // was 0 but collided with Yasue SH00; capability +#define RIG_PASSBAND_NORMAL s_Hz(0) // was 0 but collided with Yasue SH00; capability + + /** * \brief Macro for bandpass to be left alone */