Fix error message in bitsync config validation

This commit is contained in:
Jonathan Swoboda 2024-11-07 11:11:41 -05:00
parent 57dd5cf84f
commit f5e7c339b6

View file

@ -136,7 +136,7 @@ def validate_config(config):
if config[CONF_PA_PIN] == "BOOST" and config[CONF_PA_POWER] < 2: if config[CONF_PA_PIN] == "BOOST" and config[CONF_PA_POWER] < 2:
raise cv.Invalid("PA power must be >= 2 dbm when using the BOOST pin") raise cv.Invalid("PA power must be >= 2 dbm when using the BOOST pin")
if CONF_BITSYNC in config and config[CONF_BITSYNC] and CONF_BITRATE not in config: if CONF_BITSYNC in config and config[CONF_BITSYNC] and CONF_BITRATE not in config:
raise cv.Invalid("Bitsync is true but not bitrate not configured") raise cv.Invalid("Bitsync is true but bitrate is not configured")
if CONF_BITRATE in config and CONF_BITSYNC not in config: if CONF_BITRATE in config and CONF_BITSYNC not in config:
raise cv.Invalid( raise cv.Invalid(
"Bitrate is configured but not bitsync; add 'bitsync: true' for original functionality" "Bitrate is configured but not bitsync; add 'bitsync: true' for original functionality"