- 新しい順
- 投票が多い順
- コメントが多い順
Hi. Is this a typo?
RxFreq2 9230000
As far as I know, that's not a valid downstream channel frequency. See section 2.3.2 here: https://resources.lora-alliance.org/technical-specifications/lorawan-regional-parameters-v1-0-3reva. If you have that wrong though, I would have expected no downlinks to succeed for that device.
Besides that, nothing obvious is jumping out at me. You're using some non-recommended values, but they're valid as far as I know. It will be useful to:
- use the Network Analyzer to confirm messages are being sent at correct times/frequencies/etc
- check the Basic Station log for
[AIO:XDEB] [4|WS] < {"msgtype":"dnmsg"
to see what/when downlinks AWS IoT Core for LoRaWAN is sending to the gateway. - any logs you can get from your device.
Based on the information provided, there are a few potential reasons for the downlink message failures you're experiencing:
-
Class A device behavior: Class A devices only open receive windows after sending an uplink message. If your device is not sending regular uplinks, it may miss the downlink messages. Ensure that your device is sending uplinks frequently enough to receive downlinks.
-
Timing issues: For Class A devices, the downlink timing is critical. The AWS IoT Core for LoRaWAN needs to send the downlink message precisely during the device's receive window. If there's any misalignment, the downlink will fail.
-
Gateway connectivity: Ensure that the gateway your device is connecting to is online and properly configured. If the gateway is not available when the downlink is scheduled, the message will fail.
-
Frequency plan: While you've specified US915, make sure that the frequencies used for downlink (RxFreq2) align with the US915 band plan.
-
Message queue management: Check if there are multiple downlink messages queued for the device. Sometimes, if messages are not properly cleared from the queue, it can cause issues with new downlinks.
-
Payload size: Ensure that your downlink payload is not exceeding the maximum allowed size for the data rate you're using.
To troubleshoot:
- Monitor your device's uplink messages to ensure they're being received regularly.
- Check the gateway logs to see if there are any issues with downlink transmission.
- Verify that the FPort (2 in this case) is correct for your application.
- Try sending a downlink message immediately after receiving an uplink to increase the chances of hitting the receive window.
- Consider temporarily changing the device to Class C (if supported) to test if downlinks work in that mode.
If the issue persists, you may need to gather more detailed logs from both the device and AWS IoT Core for LoRaWAN to identify the root cause of the failure.
Sources
Queue downlink messages to send to LoRaWAN devices - AWS IoT Wireless
ERROR when sending downlink to class A devices | AWS re:Post
関連するコンテンツ
- 質問済み 7年前
- 質問済み 7年前
- AWS公式更新しました 2年前
- AWS公式更新しました 2年前