Closed augisbud closed 5 years ago
Hello, from your configuration I can see that "pin_dio0" is specified twice instead of having "pin_dio0" and "pin_dio1". The reset/restart pin ("pin_rest") should be also set to a negative value if it's not used or to something different than the values specified for the "pin" fields.
Currently I am not very confident that this project is suitable/would work with your Dragino hat. The current support is only for the SX1278 chip (although I plan to extend it in the future) while Draginos on 868.1 MHz typically use SX1276.
Hello, from your configuration I can see that "pin_dio0" is specified twice instead of having "pin_dio0" and "pin_dio1". The reset/restart pin ("pin_rest") should be also set to a negative value if it's not used or to something different than the values specified for the "pin" fields.
Currently I am not very confident that this project is suitable/would work with your Dragino hat. The current support is only for the SX1278 chip (although I plan to extend it in the future) while Draginos on 868.1 MHz typically use SX1276.
yup, fixed the config, now i get the
LoRa chip setup failed, code 65524
error.
Any ideas, could I use a RFM95?
the Dragino Hat uses SX1276, it works on another code, check out my profile forked https://github.com/augisbud/single_chan_pkt_fwd
Thanks for the link. On your question - the short answer is not yet. On theory the LoRa library this project is based on should support it, but there's more work to be done...
Thanks for the link. On your question - the short answer is not yet. On theory the LoRa library this project is based on should support it, but there's more work to be done...
can you tell me the difference between SX1272/76/78 and where could I acquire SX1278
Section "1.2 Product Versions" / page 10 in Semtech's datasheet answers that - https://www.semtech.com/uploads/documents/DS_SX1276-7-8-9_W_APP_V6.pdf
This discussion also covers part of that information.
However it really comes to the concrete module you are buying and the particular frequency it is optimised for. (The manufacturer accomplishes that by tuning the values of the passives controlling the transmitting frequency).
You can search in eBay for modules like "SX1278 RA-02" and similar ones. For e.g.:
https://www.ebay.com/itm/SX1278-LoRa-Module-433M-10KM-Ra-02-Wireless-Spread-Socket/392167020016
Section "1.2 Product Versions" / page 10 in Semtech's datasheet answers that - https://www.semtech.com/uploads/documents/DS_SX1276-7-8-9_W_APP_V6.pdf
This discussion also covers part of that information.
However it really comes to the concrete module you are buying and the particular frequency it is optimised for. (The manufacturer accomplishes that by tuning the values of the passives controlling the transmitting frequency).
You can search in eBay for modules like "SX1278 RA-02" and similar ones. For e.g.:
https://www.ebay.com/itm/SX1278-LoRa-Module-433M-10KM-Ra-02-Wireless-Spread-Socket/392167020016
you live in europe but seem to use the module meant for the asian market?
also one more thing, does you code support SF12BW500 or atleast SF12BW250
It also depends on your country's local regulations. In some EU countries 433 MHz is legal too. Regarding the SF12BW500 and SF12BW250 - yes, it is supported - can be set via "bandwidth_khz" field in the settings, Just change it to 250 or 500.
@augisbud , I've made the configuration to require "ic_model" field, specifyng the exact LoRa chip model used. List of the valid options can be found in the README.md of the project. You can also refer to the config.json.template file for an example.
The new option along with the existing ones should provide wider support for the SX and RFM ICs family. Just make sure that you've properly configured "pin_dio1" for Dragino, otherwise the initialisation will certainly fail.
@augisbud , I've made the configuration to require "ic_model" field, specifyng the exact LoRa chip model used. List of the valid options can be found in the README.md of the project. You can also refer to the config.json.template file for an example.
The new option along with the existing ones should provide wider support for the SX and RFM ICs family. Just make sure that you've properly configured "pin_dio1" for Dragino, otherwise the initialisation will certainly fail.
the dragino shield doesn't have a dio1 wired, so i should do it manually to one of the gpios?
soldered dio1, i get no errors however from the transmit code I don't get a response.
Target LoRa Chip Model: SX1276
SPI Settings:
SPI channel=0
SPI clock speed=2000000 Hz
(WiringPI) Pins:
nss_cs=6
dio0=7
dio1=5
rest=-1
LoRa SX1276 Chip:
Freq=868.099976 MHz
BW=125.000000 KHz
SF=12
CR=4/5
SyncWord=0x34
PreambleLength=8
Meta Information:
Latitude=0.000000
Longtitude=0.000000
Altitude=20 meters
Name/Definition: RPI
E-mail: info@ginetas.lt
Description: PktFWD
LoRa chip setup success!
Sending stat update to server(s)... done
in the arduino
int state = lora.begin(868.1, 125.0, 12, 5, 0x34);
Soldering dio1 was required in your case.
Regarding the Transmit sketch in Arduino - around line 32 there should be the following code:
SX1278 lora = new LoRa(NSS, DIO0, DIO1);
Can you try changing it to:
SX1276 lora = new LoRa(NSS, DIO0, DIO1);
Soldering dio1 was required in your case.
Regarding the Transmit sketch in Arduino - around line 32 there should be the following code:
SX1278 lora = new LoRa(NSS, DIO0, DIO1);
Can you try changing it to:
SX1276 lora = new LoRa(NSS, DIO0, DIO1);
yes I have done this and forgot to mention
That's strange. I guess it's needless to mention double checking NSS, DIO0, DIO1 pin definitions and their wiring.
You can also enable debug mode in Transmit.ino by adding at the top:
#define RADIOLIB_DEBUG
The same debug mode can be enabled in the packet forwarder by compiling it with:
make debug
It should show some extra information in the console.
enabled debugging and now everything works, thanks
Could you try configuring both sides with lower SF and BW settings, while using the non-debugging version of the projects?
yes
Does the LoRa communication work?
yes
Looks like the problem is resolved. I am closing the ticket.
Hello I get this error when trying to execute the program.
I also used to get this error
LoRa chip setup failed, code 65524
I'm using a Dragino Lora/Gps HAT
my config.json