Hey, I’m experimenting with TTN right now and stumbled upon the following behavior:
I wanted to find out how far TTN supports FSK modulated packets. When I send a properly pre-matted join request it is forwarded as expected by my TTIG gateway. In the history I see the following:
And in the details:
...
"raw_payload": "AAAAAAAAAAAAlt0F0H7Vs3BbS7tQD9g=",
"payload": {
"m_hdr": {},
"mic": "u1AP2A==",
"join_request_payload": {
"join_eui": "0000000000000000",
"dev_eui": "70B3D57ED005DD96",
"dev_nonce": "4B5B"
}
},
"settings": {
"data_rate": {
"fsk": {
"bit_rate": 50000
}
},
"frequency": "868800000",
"timestamp": 3798740240,
"time": "2023-05-25T22:21:15.225883960Z"
},
...
Unfortunately, this join request is apparently not forwarded to the network server and remains unheard.
As a test I sent the same join message (even with the same nonce) with LoRa modulation. This is also forwarded by the gateway:
...
"raw_payload": "AAAAAAAAAAAAlt0F0H7Vs3BbS7tQD9g=",
"payload": {
"m_hdr": {},
"mic": "u1AP2A==",
"join_request_payload": {
"join_eui": "0000000000000000",
"dev_eui": "70B3D57ED005DD96",
"dev_nonce": "4B5B"
}
},
"settings": {
"data_rate": {
"lora": {
"bandwidth": 125000,
"spreading_factor": 7,
"coding_rate": "4/5"
}
},
"frequency": "868100000",
"timestamp": 1963148731,
"time": "2023-05-25T23:02:14.616158008Z"
},
...
I can see in the live data of the end device how the join request is accepted and in the log of the gateway how an uplink message arrives. Everything works as expected.
My question is now. Are FSK modulated packets currently supported or is there a bug?