Buffering LoRa frames
- This topic has 0 replies, 1 voice, and was last updated 8 years, 6 months ago by .
Viewing 1 post (of 1 total)
Viewing 1 post (of 1 total)
- You must be logged in to reply to this topic.
Home › Forums › Conduit: AEP Model › Buffering LoRa frames
Hello,
I am using a network server solution on my aep conduit, how does the gateway knows that a LoRa frame is received on the conduit, and so it send to to the application server ?
I want to understand this, because I need the conduit to not send the LoRa frame received, but to stack them and then send them at the same time (i.e. sending X frames to the AS after N hours of LoRa frames reception)
Here is my configuration :
{
"udp": {
"appPortUp": 1784,
"appPortDown": 1786,
"downstreamPort": 1782,
"upstreamPort": 1780},
"log": {
"syslog": false,
"path": "",
"console": true,
"level": 100},
"whitelist": {
"enabled": true,
"devices": []},
"addressRange": {
"start": "00:00:00:01",
"end": "FF:FF:FF:FE"},
"mqtt": {
"host": "127.0.0.1",
"enabled": true,
"port": 1883},
"lora": {
"rx1DatarateOffset": 0,
"frequencyBand": 868,
"nodeQueueSize": 16,
"enabled": true,
"rx2Datarate": 12,
"packetForwarderConfig": "",
"frequencySubBand": 1,
"maxTxPower": 26,
"packetForwarderMode": false,
"frequencyEU": 867500000},
"network": {
"key": "",
"leasetime": 86400,
"name": "",
"passphrase": "",
"eui": "",
"public": true}
}
I understand that the local MQTT is able to stack the frames, is it automatic ? How do I handle this broker so that I enable it sending the frames or not, and how can I read the data from a topic ?
Thank you.