-
Notifications
You must be signed in to change notification settings - Fork 94
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
RN2903 and Arduino Uno not Working with Library #248
Comments
Thanks for the extensive writeup. Can you confirm that a serial passthrough works, i.e. executing commands on the RN module manually? @jpmeijers any idea? |
Hi @johanstokking, Using @jpmeijers library I am able to execute commands on the RN2903. In addition, I have used the following code without either @jpmeijers or the TTN library and it succeeded in send a message to the RN2903 and sending one back. On my board a LED is connect to GPIO10, so for testing I flicked it on and off. Below is my code. It's not pretty, but it shows that it works with my current setup:
|
So the issue is that this bare code is faster than when you use the library? That's pretty weird... |
I'd say so, but the bigger issue is that the board simply does not play nice with the official TTN library. |
Which library does not play nice with the TTN library? The only obvious thing I see in your code is that you swapped the baud rates for debug and the radio; if you use 9600 for the RN module instead of 57600 then everything is clearly slower. |
Sorry, I meant to say board. ;) The baud rate I normally use is 9600, I'll try changing that and report back. |
Any news @ElectronicallyE ? |
Hey @johanstokking, Changed the baud rate 9600 and there is no difference. The code I used was:
I did the serial printing of what is happening in the newly updated library using the following code:
And got this output:
It keeps going on, so I'm assuming it'll do what was happening before when I had previously change the files. |
Which change did you actually apply? Because I still see baud rate |
I changed both to 9600. I’ve updated it in my post, because that’s what I actually did. |
OK. It is normal that you experience slower communication on a lower baud rate. You can and should use 57600 for the RN module. |
I believe the problem is still present. It seems to me that the print out takes a lot longer than necessary at about 40 minutes, and yet, I still do not see a transmission on the TTN Console. I have used other code with the jpmeijers RN2483-Arduino-Library where I communicate at 57600, so I don't think that is the problem. |
@jpmeijers any idea? |
I have tested a TTN Uno using my adjusted code. The code I have adjusted is in TheThingsNetwork.cpp is the readLine function, where I have some values printed:
The output from a TTN Uno is:
And the output from my board is:
I do not have my full output, because this will go on for a while, as shown by the time to the left. Hopefully this makes some sense to you. It's a bit messy, but shows that the code is struggling to read my board. I'll look into this some more. |
I can get the @jpmeijers library to work without issue on both OTAA and ABP. Just to reiterate, the current code I am using in Jp's library is:
|
@ElectronicallyE did you figure out in the meantime why the TTN library doesn't work? |
@johanstokking, unfortunately I haven't. Completely slipped out of my mind. I won't be able to get back into it till the end of the year, but when I make progress, I'll be sure to get back in touch. |
OK please reopen when the issue is still there. |
Was this ever fixed? I tried the RN2903 module and still cant get this to work. |
Hey @brolly759 I didn’t end up resolving this issue as I no longer had the need to develop a board I was designing which used the RN2903. Have a look at this library, which I believe I got working, but was stuck on SF12 packet size limits: https://github.com/jpmeijers/RN2483-Arduino-Library |
I tested that library out as well. I couldn't do more than 11 byte payloads. Also running into issues trying to get network status on there. In their code they have a switch statement for the RN2903, I guess I could compare the TTN library verse theirs to see the differences. Maybe I will just go with a different UART Lora module. ;) |
Yep, that’s about where I stopped. Was just putting a heap of time into it with very little progress and by the end it was more effective to just go with a MKR WAN 1310. Oddly enough, the TTN Uno as far as I know didn’t have these problems, which makes me suspect it was something about the Uno and the RN2903. |
MKR WAN 1310. That uses a Murata module and looks like SPI to control it over an SAMD21 processor. Not as easy as UART. |
Nevermind, looking at the source code it looks like UART. Still a bit overkill if I wanted to use an ATMEGA328P. |
haha, I got it to work! That was easier than I thought. Make sure the baudrate for both serial ports is set to 9600. 57600 is too fast and data can get corrupted with the softwareserial library. Then all you had to do was call ttn.reset(); after loraSerial.begin(9600); debugSerial.begin(9600); My theory is this, the autobaud() function isnt called after the serial ports are initialized and we have a baudrate mismatch. |
@brolly759 your solution, how much does it differ from that is documented at https://www.thethingsnetwork.org/docs/devices/arduino/usage.html#serial-ports? If the documentation is wrong or incomplete, please let us know, or file a pull request to fix it. |
@jpmeijers First off, great work! Reasoning: because we are changing the baudrate from 57600 to 9600 we need to run the autobaud function after the serial ports are initialized. The autobaud() function is private in the library and the only time its called is in ttn.reset(); Its also good habit to reset the Microchip module on startup anyways. |
I have been trying to use the official TTN Library with my Arduino Uno wired to my Microchip RN2903 with the SA1.0.3 firmware. I am using this board for the RN2903 and have wired it to my Arduino with using a logic level converter for the RN2903 TX -> Uno RX line and two voltage dividers for the RESET line and the Uno RX -> RN2903 TX line.
I had been using the jpmeijers with success and since been testing this library with the exact same pinouts, wiring setup and AltSoftSerial. My first issue I faced was the code repeating in the
while
section of thereadLine
function which from my understanding is in the process of being resolved as documented firstly here and secondly here.My pinouts are:
My Arduino code for all testing was based on the SendABP example, however was adjusted to support the Arduino Uno as shown below. Do note that I am using the AU915 frequency plan:
I did some testing printing the read, buffer and size values by adjusting the TheThinksNetwork.cpp as follows starting on line 360:
My output from this is as follows:
As I didn't know where to go from here, I resorted to copying the content of the three files changed in the pull request by savnik.
These three adjusted files are:
TheThingsNetwork.md
TheThingsNetwork.cpp
TheThingsNetwork.h
The node began transmitting and did it rather consistently, which appeared in the gateway console, however nothing appeared within the node console. I checked to make sure that my credentials were correct and they were, so on the TTN side everything should have worked.
Also note the blank value under
STATUS
which I can only assume should contain information.The above channels also look correct being from channels 8-15 and then 65, so there is nothing wrong with the frequency plan either.
So the current problems are as follows:
readLine
functionSTATUS
From my perspective part of the problem is the same as that which is present with the readLine function, but I think there may be something else which is causing a problem. From my testing of this library over the last 6 months using both an Arduino Uno or an Arduino Nano, never have I successfully used it, unlike some people I know who have been able to with The Things Uno.
What I do know are correct:
The text was updated successfully, but these errors were encountered: