2018-08-13 11:31 PM
I want to get gps information using p nucleo lrwan1. Can I get an open source that can help? I'll use the uart port.(gps)
Solved! Go to Solution.
2018-08-15 11:06 PM
I did an internet search, and I have to register the gateway and the device, but I do not know how to do without the gateway. ㅠ.ㅠ
2018-08-16 08:35 AM
To reiterate again the ping-pong example doesn't use a Gateway, it is a point-to-point implementation, basically broadcasting to the same band other radios are listening on.
It configures the SX1276 radio and throws data into the air.
Take your two LoRa-DISCO boards and program in the Ping-Pong program into each, and review behaviour.
2018-08-16 09:53 AM
Do I compile the same source (modified readme.txt) both on the board (master) that connects to the pc and on the board (slave) to which it is connected (gps module + power)? Separately?
2018-08-16 10:23 AM
Step one on your journey needs to be building the Ping-Pong example, as-is, and putting it on your two nodes, and to learn/observe how it functions.
2018-08-16 07:03 PM
Ok. Do I have to put the same ping-pong example on both boards? One side gives power supply separately?or use 2pc.
2018-08-16 10:08 PM
Same software.
Program one at a time.
You can then connect two boards to a single PC.
If insufficient USB ports use a hub or second PC, or Battery Pack/Charger.
2018-08-17 01:08 AM
If I connect two boards to one pc and put in a ping-pong example, should two terminals display ping messages and pong messages, respectively? Do I need st-link settings or other settings? It does not work. How do I decide on a master board and a slave board?
2018-08-18 03:19 AM
Thanks~~~!! The ping pong example works. What's the next step?
2018-08-18 07:18 AM
Split into two programs, strip out unnecessary code so you can make one a listener printing what it receives and make the other a transmitter that sends an evolving message.
Then you might want to start experimenting with reading data from the UART, and processing data from the GPS, or user input from the terminal.
2018-08-18 12:09 PM
Do I have to modify the readme.txt according to the link you gave? How do I modify the code for gps use?