Home IO Control
ESPHome add-on for IO-Homecontrol devices
Loading...
Searching...
No Matches
tuning_config.cpp
Go to the documentation of this file.
1/// @file tuning_config.cpp
2/// @brief Runtime tuning configuration helpers and snapshot formatting.
3/// @ingroup hioc_tuning
4
5#include "tuning_config.h"
6
7#include "proto_constants.h"
8#include "tuning_registry.h"
9
10#include <algorithm>
11#include <cctype>
12#include <cstdio>
13
14namespace esphome {
15namespace home_io_control {
16
17namespace {
18
19/// Default tuning configuration used for diffing and reset behavior.
20const TuningConfig DEFAULTS{};
21
22/// Buffer size for a formatted single hex byte such as "0x2E" (4 chars + slack).
23constexpr size_t HEX_BYTE_STR_SIZE = 8;
24/// Buffer size for a formatted 3-byte hex address such as "0x00003B".
25constexpr size_t HEX_ADDR_STR_SIZE = 16;
26/// Buffer size for a formatted bandwidth string such as "117.3kHz".
27constexpr size_t BANDWIDTH_STR_SIZE = 16;
28
29/// One selectable RX bandwidth per chip: register byte plus its nominal kHz value.
30///
31/// SX1262 and LR1121 share the Semtech GFSK bandwidth grid, so these two tables are
32/// byte-for-byte identical today (the `Sx1262AndLr1121BandwidthTablesAgree` test pins that);
33/// they are kept separate only so each chip's option set can diverge for a real chip
34/// difference. SX1276 has its own RegRxBw encoding. Keys must match `tuning.py`'s
35/// `*_BANDWIDTH_OPTIONS`, which `scripts/check-tuning-sync.py` verifies.
36// The register byte in every row comes from the chip's bandwidth enum so it keeps exactly one
37// definition; the kHz literal is this table's only added datum. `scripts/check-tuning-sync.py`
38// pins the kHz column against `tuning.py`; the enum cast pins the register byte.
39constexpr BandwidthOption SX1262_BANDWIDTHS[] = {
40 {static_cast<uint8_t>(SX1262RxBandwidth::BW_39_0_KHZ), 39.0F},
41 {static_cast<uint8_t>(SX1262RxBandwidth::BW_46_9_KHZ), 46.9F},
42 {static_cast<uint8_t>(SX1262RxBandwidth::BW_58_6_KHZ), 58.6F},
43 {static_cast<uint8_t>(SX1262RxBandwidth::BW_78_2_KHZ), 78.2F},
44 {static_cast<uint8_t>(SX1262RxBandwidth::BW_117_3_KHZ), 117.3F},
45 {static_cast<uint8_t>(SX1262RxBandwidth::BW_156_2_KHZ), 156.2F},
46 {static_cast<uint8_t>(SX1262RxBandwidth::BW_187_2_KHZ), 187.2F},
47};
48constexpr BandwidthOption SX1276_BANDWIDTHS[] = {
49 {static_cast<uint8_t>(SX1276RxBandwidth::BW_20_8_KHZ), 20.8F},
50 {static_cast<uint8_t>(SX1276RxBandwidth::BW_41_7_KHZ), 41.7F},
51 {static_cast<uint8_t>(SX1276RxBandwidth::BW_62_5_KHZ), 62.5F},
52 {static_cast<uint8_t>(SX1276RxBandwidth::BW_83_3_KHZ), 83.3F},
53 {static_cast<uint8_t>(SX1276RxBandwidth::BW_125_0_KHZ), 125.0F},
54};
55constexpr BandwidthOption LR1121_BANDWIDTHS[] = {
56 {static_cast<uint8_t>(LR1121RxBandwidth::BW_39_0_KHZ), 39.0F},
57 {static_cast<uint8_t>(LR1121RxBandwidth::BW_46_9_KHZ), 46.9F},
58 {static_cast<uint8_t>(LR1121RxBandwidth::BW_58_6_KHZ), 58.6F},
59 {static_cast<uint8_t>(LR1121RxBandwidth::BW_78_2_KHZ), 78.2F},
60 {static_cast<uint8_t>(LR1121RxBandwidth::BW_117_3_KHZ), 117.3F},
61 {static_cast<uint8_t>(LR1121RxBandwidth::BW_156_2_KHZ), 156.2F},
62 {static_cast<uint8_t>(LR1121RxBandwidth::BW_187_2_KHZ), 187.2F},
63};
64
65/// kHz returned for a register byte not in the chip's table — the chip's configured default,
66/// matching the fall-through of the previous per-chip switch statements.
67constexpr float SX1262_BW_FALLBACK_KHZ = 117.3F;
68constexpr float SX1276_BW_FALLBACK_KHZ = 41.7F;
69constexpr float LR1121_BW_FALLBACK_KHZ = 117.3F;
70
71template<size_t N> constexpr size_t bw_count(const BandwidthOption (& /*table*/)[N]) { return N; }
72
73} // namespace
74
75float bandwidth_to_khz(const BandwidthOption *table, size_t n, uint8_t reg, float fallback) {
76 for (size_t i = 0; i < n; ++i) {
77 if (table[i].reg == reg)
78 return table[i].khz;
79 }
80 return fallback;
81}
82
83std::string bandwidth_to_string(float khz) {
84 char buf[BANDWIDTH_STR_SIZE];
85 snprintf(buf, sizeof(buf), "%.1f", khz);
86 return std::string(buf);
87}
88
89std::optional<uint8_t> bandwidth_from_string(const BandwidthOption *table, size_t n, const std::string &value) {
90 std::string normalized = value;
91 // Normalize: strip whitespace and a trailing "kHz"/"khz" suffix.
92 normalized.erase(std::remove_if(normalized.begin(), normalized.end(), ::isspace), normalized.end());
93 for (char &c : normalized)
94 c = static_cast<char>(std::tolower(static_cast<unsigned char>(c)));
95 if (normalized.size() > 3 && normalized.ends_with("khz"))
96 normalized.resize(normalized.size() - 3);
97
98 for (size_t i = 0; i < n; ++i) {
99 char one_decimal[BANDWIDTH_STR_SIZE];
100 char truncated[BANDWIDTH_STR_SIZE];
101 snprintf(one_decimal, sizeof(one_decimal), "%.1f", table[i].khz);
102 snprintf(truncated, sizeof(truncated), "%d", static_cast<int>(table[i].khz));
103 if (normalized == one_decimal || normalized == truncated)
104 return table[i].reg;
105 }
106 return std::nullopt;
107}
108
109BandwidthTableView sx1262_bandwidth_table() { return {SX1262_BANDWIDTHS, bw_count(SX1262_BANDWIDTHS)}; }
110BandwidthTableView sx1276_bandwidth_table() { return {SX1276_BANDWIDTHS, bw_count(SX1276_BANDWIDTHS)}; }
111BandwidthTableView lr1121_bandwidth_table() { return {LR1121_BANDWIDTHS, bw_count(LR1121_BANDWIDTHS)}; }
112
114 return bandwidth_to_khz(SX1262_BANDWIDTHS, bw_count(SX1262_BANDWIDTHS), static_cast<uint8_t>(bw),
115 SX1262_BW_FALLBACK_KHZ);
116}
117
121
122std::optional<SX1262RxBandwidth> sx1262_bandwidth_from_string(const std::string &value) {
123 if (const auto reg = bandwidth_from_string(SX1262_BANDWIDTHS, bw_count(SX1262_BANDWIDTHS), value))
124 return static_cast<SX1262RxBandwidth>(*reg);
125 return std::nullopt;
126}
127
129 return bandwidth_to_khz(SX1276_BANDWIDTHS, bw_count(SX1276_BANDWIDTHS), static_cast<uint8_t>(bw),
130 SX1276_BW_FALLBACK_KHZ);
131}
132
136
137std::optional<SX1276RxBandwidth> sx1276_bandwidth_from_string(const std::string &value) {
138 if (const auto reg = bandwidth_from_string(SX1276_BANDWIDTHS, bw_count(SX1276_BANDWIDTHS), value))
139 return static_cast<SX1276RxBandwidth>(*reg);
140 return std::nullopt;
141}
142
144 return bandwidth_to_khz(LR1121_BANDWIDTHS, bw_count(LR1121_BANDWIDTHS), static_cast<uint8_t>(bw),
145 LR1121_BW_FALLBACK_KHZ);
146}
147
151
152std::optional<LR1121RxBandwidth> lr1121_bandwidth_from_string(const std::string &value) {
153 if (const auto reg = bandwidth_from_string(LR1121_BANDWIDTHS, bw_count(LR1121_BANDWIDTHS), value))
154 return static_cast<LR1121RxBandwidth>(*reg);
155 return std::nullopt;
156}
157
158std::optional<DiscoveryCommand> discovery_command_from_string(const std::string &value) {
159 std::string normalized = value;
160 for (char &c : normalized)
161 c = static_cast<char>(std::tolower(static_cast<unsigned char>(c)));
162 if (normalized == "0x28" || normalized == "discover")
164 if (normalized == "0x2a" || normalized == "discover_spe")
166 if (normalized == "0x2e" || normalized == "discover_alt")
168 return std::nullopt;
169}
170
172 char buf[HEX_BYTE_STR_SIZE];
173 snprintf(buf, sizeof(buf), "0x%02X", static_cast<uint8_t>(cmd));
174 return std::string(buf);
175}
176
177std::string discovery_commands_to_csv(const std::vector<DiscoveryCommand> &commands) {
178 std::string result;
179 for (size_t i = 0; i < commands.size(); ++i) {
180 if (i > 0)
181 result += ',';
182 result += discovery_command_to_string(commands[i]);
183 }
184 return result;
185}
186
187std::string discovery_commands_to_string(const std::vector<DiscoveryCommand> &commands) {
188 return "[" + discovery_commands_to_csv(commands) + "]";
189}
190
191const uint8_t *resolve_discovery_destination(uint8_t command, bool destination_auto,
192 const uint8_t destination[NODE_ID_SIZE]) {
193 if (!destination_auto)
194 return destination;
195 // Conventional destinations from the protocol / reference captures: standard and SPE
196 // discovery broadcast to 0x00003B; alternate discovery (0x2E) broadcasts to 0x00003F.
197 switch (command) {
198 case CMD_DISCOVER_REQ:
200 return BROADCAST_DISCOVER;
203 default:
204 return BROADCAST_DISCOVER;
205 }
206}
207
208std::string discovery_destination_to_string(bool destination_auto, const uint8_t destination[NODE_ID_SIZE]) {
209 if (destination_auto)
210 return "auto";
211 char buf[HEX_ADDR_STR_SIZE];
212 snprintf(buf, sizeof(buf), "0x%02X%02X%02X", destination[0], destination[1], destination[2]);
213 return std::string(buf);
214}
215
216std::string discovery_payload_to_string(bool payload_enabled, uint8_t payload) {
217 if (!payload_enabled)
218 return "none";
219 char buf[HEX_BYTE_STR_SIZE];
220 snprintf(buf, sizeof(buf), "0x%02X", payload);
221 return std::string(buf);
222}
223
224std::string tuning_update_log_line(const std::string &name, const std::string &value) {
225 return "Tuning updated via HA: " + name + "=" + value;
226}
227
228std::string tuning_config_snapshot(const TuningConfig &cfg) {
229 std::string result;
230
231 // The three RX-bandwidth fields are enums, not plain numbers, so they stay hand-written here
232 // rather than going through the numeric loop below (they're SELECT_PARAMS, not NUMBER_PARAMS,
233 // in tuning_registry.cpp).
234 if (cfg.sx1262_rx_bandwidth != DEFAULTS.sx1262_rx_bandwidth)
235 result += " sx1262_rx_bandwidth=" + sx1262_bandwidth_to_string(cfg.sx1262_rx_bandwidth);
236 if (cfg.sx1276_rx_bandwidth != DEFAULTS.sx1276_rx_bandwidth)
237 result += " sx1276_rx_bandwidth=" + sx1276_bandwidth_to_string(cfg.sx1276_rx_bandwidth);
238 if (cfg.lr1121_rx_bandwidth != DEFAULTS.lr1121_rx_bandwidth)
239 result += " lr1121_rx_bandwidth=" + lr1121_bandwidth_to_string(cfg.lr1121_rx_bandwidth);
240
241 // Every plain numeric field is driven off the same NUMBER_PARAMS table the HA `number` entities
242 // and `make tuning-sync` use (tuning_registry.cpp) — not a second, independently-maintained list
243 // of field names. A hand-written per-field if-chain here once let a real, shipped knob
244 // (`pairing_discovery_preamble`) go completely missing from this exact diagnostic line — the one
245 // `discover_and_pair()` logs at the start of every attempt specifically so a user's bug report
246 // records which knobs were actually in effect — while still working everywhere else (HA entity,
247 // YAML, `make tuning-sync`). Table-driven means a new numeric knob can't repeat that: it either
248 // has a NUMBER_PARAMS row (and is covered) or it doesn't (and can't be set from HA at all).
250 const float current = p->get(cfg);
251 if (current != p->get(DEFAULTS))
252 result += " " + std::string(p->name) + "=" + std::to_string(static_cast<int64_t>(current));
253 }
254
255 if (cfg.pairing_discovery_commands != DEFAULTS.pairing_discovery_commands)
256 result += " pairing_discovery_commands=" + discovery_commands_to_string(cfg.pairing_discovery_commands);
257 // The default is auto; an explicit destination is the only non-default state worth emitting
258 // (the destination bytes are unused while auto is set).
260 result +=
261 " pairing_discovery_destination=" + discovery_destination_to_string(cfg.pairing_discovery_destination_auto,
263 }
264 if (cfg.pairing_discovery_payload_enabled != DEFAULTS.pairing_discovery_payload_enabled ||
265 cfg.pairing_discovery_payload != DEFAULTS.pairing_discovery_payload) {
266 result += " pairing_discovery_payload=" +
268 }
269 if (cfg.pairing_discovery_low_power != DEFAULTS.pairing_discovery_low_power)
270 result += " pairing_discovery_low_power=" + std::string(cfg.pairing_discovery_low_power ? "true" : "false");
271 // pairing_discovery_preamble, pairing_discovery_wait_ms, pairing_discovery_initial_dwell_ms, and
272 // pairing_key_exchange_retries are plain NUMBER_PARAMS entries — covered by the loop above.
273
274 return result;
275}
276
278 const std::string result = tuning_config_snapshot(cfg);
279 if (result.empty())
280 return "Tuning: defaults active";
281 return "Tuning overrides active:" + result;
282}
283
284} // namespace home_io_control
285} // namespace esphome
BandwidthTableView lr1121_bandwidth_table()
The LR1121 RX-bandwidth option table (see sx1262_bandwidth_table()).
std::string discovery_commands_to_csv(const std::vector< DiscoveryCommand > &commands)
Format the ordered discovery command list as a UI/preset option string.
static constexpr uint8_t CMD_DISCOVER_REQ
Broadcast discovery request.
static constexpr uint8_t NODE_ID_SIZE
Device/node addresses are 3 bytes (e.g., "123ABC").
Definition proto_sizes.h:20
std::optional< LR1121RxBandwidth > lr1121_bandwidth_from_string(const std::string &value)
Convert a YAML LR1121 bandwidth string to the enum value.
SX1262RxBandwidth
Valid SX1262 RX bandwidth options (kHz register values).
@ BW_39_0_KHZ
39.0 kHz — narrowest; closest to the SX1276's validated 41.7 kHz.
@ BW_58_6_KHZ
58.6 kHz — default; the narrowest value validated on real hardware here.
@ BW_78_2_KHZ
78.2 kHz — just above the ~77 kHz Carson figure for this waveform.
@ BW_117_3_KHZ
117.3 kHz — the former default.
@ BW_187_2_KHZ
187.2 kHz — widest selectable option.
const TuningNumberParam * tuning_number_params_end()
std::string discovery_payload_to_string(bool payload_enabled, uint8_t payload)
Format a payload option for YAML/logs.
std::optional< DiscoveryCommand > discovery_command_from_string(const std::string &value)
Parse a discovery command string (e.g., "0x28") into the enum.
static constexpr uint8_t CMD_DISCOVER_ALT_REQ
Alternate discovery.
LR1121RxBandwidth
Valid LR1121 RX bandwidth options (register values).
@ BW_39_0_KHZ
39.0 kHz — narrowest; close to SX1276's validated 41.7 kHz default.
@ BW_156_2_KHZ
156.2 kHz — wider tolerance for LO offset.
@ BW_187_2_KHZ
187.2 kHz — widest selectable option.
std::string lr1121_bandwidth_to_string(LR1121RxBandwidth bw)
Format an LR1121 bandwidth enum as its YAML/UI option string (bare kHz number).
std::string tuning_config_snapshot(const TuningConfig &cfg)
Format the current tuning configuration as a one-line YAML-compatible snapshot.
std::optional< SX1262RxBandwidth > sx1262_bandwidth_from_string(const std::string &value)
Convert a YAML bandwidth string to the enum value.
std::string sx1276_bandwidth_to_string(SX1276RxBandwidth bw)
Format an SX1276 bandwidth enum as its YAML/UI option string (bare kHz number).
float lr1121_bandwidth_to_khz(LR1121RxBandwidth bw)
Convert an LR1121 bandwidth enum to the numeric kHz value used in YAML/logs.
std::string discovery_commands_to_string(const std::vector< DiscoveryCommand > &commands)
Format the ordered discovery command list for logs.
std::string bandwidth_to_string(float khz)
Format a kHz value as its YAML/UI option string (bare number, one decimal, e.g. "117....
const TuningNumberParam * tuning_number_params_begin()
std::string tuning_config_full_snapshot(const TuningConfig &cfg)
Format the current tuning configuration as a full one-line snapshot.
float sx1262_bandwidth_to_khz(SX1262RxBandwidth bw)
Convert a bandwidth enum to the numeric kHz value used in YAML/logs.
static constexpr uint8_t CMD_DISCOVER_SPE_REQ
Broadcast roll-call answered by every device that already holds this controller's system key,...
std::string sx1262_bandwidth_to_string(SX1262RxBandwidth bw)
Format a bandwidth enum as its YAML/UI option string (bare kHz number, e.g.
BandwidthTableView sx1262_bandwidth_table()
The SX1262 RX-bandwidth option table.
std::string tuning_update_log_line(const std::string &name, const std::string &value)
Format a single tuning update for the log.
std::optional< uint8_t > bandwidth_from_string(const BandwidthOption *table, size_t n, const std::string &value)
Parse a YAML/UI bandwidth string against a table, returning the matching register byte.
DiscoveryCommand
Discovery request command codes.
@ DISCOVER_SPE
SPE roll-call request (self-authenticating; see CMD_DISCOVER_SPE_REQ).
@ DISCOVER
Standard broadcast discovery request (to 0x00003B).
@ DISCOVER_ALT
Alternate broadcast discovery (to 0x00003F), with optional payload byte.
float sx1276_bandwidth_to_khz(SX1276RxBandwidth bw)
Convert an SX1276 bandwidth enum to the numeric kHz value used in YAML/logs.
static constexpr uint8_t BROADCAST_DISCOVER[NODE_ID_SIZE]
Broadcast address for device discovery (0x00003B).
static constexpr uint8_t BROADCAST_DISCOVER_ALT[NODE_ID_SIZE]
Alternate discovery / 1W broadcast address (0x00003F).
std::string discovery_command_to_string(DiscoveryCommand cmd)
Format a discovery command enum for YAML/logs.
SX1276RxBandwidth
Valid SX1276 RX bandwidth options (RegRxBw register bytes).
@ BW_41_7_KHZ
41.7 kHz — default (validated against real devices).
@ BW_125_0_KHZ
125.0 kHz — widest selectable option.
@ BW_20_8_KHZ
20.8 kHz — narrowest; maximal noise rejection, least LO-offset tolerance.
std::optional< SX1276RxBandwidth > sx1276_bandwidth_from_string(const std::string &value)
Convert a YAML SX1276 bandwidth string to the enum value.
const uint8_t * resolve_discovery_destination(uint8_t command, bool destination_auto, const uint8_t destination[NODE_ID_SIZE])
Resolve the destination address for a discovery command.
BandwidthTableView sx1276_bandwidth_table()
The SX1276 RX-bandwidth option table (see sx1262_bandwidth_table()).
std::string discovery_destination_to_string(bool destination_auto, const uint8_t destination[NODE_ID_SIZE])
Format a destination option for YAML/logs.
float bandwidth_to_khz(const BandwidthOption *table, size_t n, uint8_t reg, float fallback)
Look up the kHz value for a register byte in a bandwidth table.
IO-Homecontrol command IDs, result codes and protocol enumerations.
One selectable RX bandwidth: the chip's register byte and its nominal kHz value.
A pointer/size view over one chip's RX-bandwidth option table.
All runtime tunable parameters for pairing and radio diagnostics.
bool pairing_discovery_destination_auto
When true, map commands to conventional addresses.
SX1276RxBandwidth sx1276_rx_bandwidth
SX1276 RX bandwidth selector.
SX1262RxBandwidth sx1262_rx_bandwidth
SX1262 RX bandwidth selector.
std::vector< uint8_t > pairing_discovery_destination
Destination when auto=false.
std::vector< DiscoveryCommand > pairing_discovery_commands
Ordered discovery commands.
bool pairing_discovery_low_power
Set LOW_POWER flag in discovery frames.
bool pairing_discovery_payload_enabled
Whether the optional payload is enabled.
LR1121RxBandwidth lr1121_rx_bandwidth
LR1121 RX bandwidth selector.
uint8_t pairing_discovery_payload
Optional payload byte (used for 0x2E).
One numeric tuning parameter: its wire name plus accessors over TuningConfig.
Runtime tuning configuration for pairing and radio diagnostics.
Table-driven registry of runtime tuning parameters.