chirpstack / chirpstack-concentratord

Concentrator HAL daemon for LoRa gateways.
https://www.chirpstack.io/
MIT License
76 stars 56 forks source link

Support transmitting using uplink frequencies (US915) #182

Closed brocaar closed 1 month ago

brocaar commented 2 months ago

Within the ChirpStack Gateway Mesh configuration we are using uplink frequencies for Relay <> Relay and Relay <> Border gateway communication. However, the min / max tx frequencies that the Concentratord enforces are only for LoRaWAN downlinks. For EU868 this is not an issue because the channels are equal, but it prevents Relay and Border gateways from transmitting using uplink frequencies (such that the other gateway is able to receive it).

I think we should make the min / max freqs an vector, such that different frequency blocks can be configured, e.g.

[[a, b], [c, d]]

I such case, there could be a frequency gap between b - c on which the gateway does not allow transmitting downlinks.

brocaar commented 1 month ago

This has been implemented.