Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func UpdateDownlinkFrame ¶
func UpdateDownlinkFrame(mode string, df *gw.DownlinkFrame) error
UpdateDownlinkFrame updates the downlink frame for backward compatibility.
Types ¶
type Gateway ¶
type Gateway interface { SendTXPacket(gw.DownlinkFrame) error // send the given packet to the gateway SendGatewayConfigPacket(gw.GatewayConfiguration) error // SendGatewayConfigPacket sends the given GatewayConfigPacket to the gateway. RXPacketChan() chan gw.UplinkFrame // channel containing the received packets StatsPacketChan() chan gw.GatewayStats // channel containing the received gateway stats DownlinkTXAckChan() chan gw.DownlinkTXAck // channel containing the downlink tx acknowledgements Close() error // close the gateway backend. }
Gateway is the interface of a gateway backend. A gateway backend is responsible for the communication with the gateway.
Click to show internal directories.
Click to hide internal directories.