-
Notifications
You must be signed in to change notification settings - Fork 212
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Assert error on FSK TX #344
Comments
hm. The correct value to write is 0x00 (on the 1276). I suspect that the FSK needs a careful path reviewing for 1272-isms, as there were a number of them in the LoRa code that I caught in previous bugs. |
I changed the FSK TX code to look like this:
Using an RTL-SDR I can see the packets are being transmitted. Looking at my gateway's UDP traffic I can also see that it received the packets and forwarded them to TTN. TTN however does not seem to accept the FSK packets.
Also see: |
Turns out that the RWC5020A will test FSK as part of certification. So I'm about to fix this and #346. |
(pushed wrong button, didn't mean to close) |
As has been stated in the readme FSK has not been tested well and has a few bugs. Therefore this issue should be seen as a note for future reference.
Library version: commit 76faca3
Steps to reproduce:
LMIC_setupChannel(8, 868800000, DR_RANGE_MAP(DR_FSK, DR_FSK), BAND_MILLI);
LMIC_setDrTxpow(DR_FSK,14);
I have added a debug print to the code to see what is happening:
After setting the OpMode to 0x10, it is read as 0x00. This is why the assert fails.
The text was updated successfully, but these errors were encountered: