Add missing channel and rf_chain fields.

This is not used by ChirpStack, but the chirpstack-udp-bridge expects to
receive this information from the ChirpStack Concentratord.
This commit is contained in:
Orne Brocaar
2022-08-04 16:52:01 +01:00
parent a14adfe20b
commit 620ff1a8f9
9 changed files with 515 additions and 412 deletions

2
api/rust/src/gw.rs vendored
View File

@ -121,6 +121,8 @@ impl UplinkFrame {
fine_time_since_gps_epoch: None,
rssi: rx_info.rssi,
snr: rx_info.lora_snr as f32,
channel: rx_info.channel,
rf_chain: rx_info.rf_chain,
board: rx_info.board,
antenna: rx_info.antenna,
location: rx_info.location.clone(),