Send sample with lora not working in custom board with nrf52832

Hello. I'm trying to run a sample with sending data via Lora. I'm using llcc68 but as I read in previous threads, the code for sx1262 should work on my chip.

Here is my code. I added a LED and a button to track if the device is flashed (I flash manually via nRF Connect for desktop).

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <zephyr/device.h>
#include <zephyr/drivers/lora.h>
#include <errno.h>
#include <zephyr/sys/util.h>
#include <zephyr/kernel.h>
#include <zephyr/drivers/gpio.h>
#define DEFAULT_RADIO_NODE DT_ALIAS(lora0)
BUILD_ASSERT(DT_NODE_HAS_STATUS_OKAY(DEFAULT_RADIO_NODE),
"No default LoRa radio specified in DT");
#define MAX_DATA_LEN 10
#define LOG_LEVEL CONFIG_LOG_DEFAULT_LEVEL
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(lora_send);
char data[MAX_DATA_LEN] = {'h', 'e', 'l', 'l', 'o', 'w', 'o', 'r', 'l', 'd'};
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Here is my overlay

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
&spi1 {
compatible = "nordic,nrf-spi";
status = "okay";
cs-gpios = <&gpio0 15 GPIO_ACTIVE_LOW>;
pinctrl-0 = <&spi1_default>;
pinctrl-1 = <&spi1_sleep>;
pinctrl-names = "default", "sleep";
lora0: sx1262@0 {
compatible = "semtech,sx1262";
status = "okay";
reg = <0>;
reset-gpios = <&gpio0 19 GPIO_ACTIVE_LOW>;
busy-gpios = <&gpio0 20 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>;
dio1-gpios = <&gpio0 7 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>;
spi-max-frequency = <4000000>;
};
};
/ {
aliases {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

The project is building, I am flashing it, and the button with the LED works. The module manages to send something once if I press reset and that's it.

I am using NCS 2.8.0. Also I don't use dio1-gpios, it is just a dummy pin.

Has anyone encountered such problems? Please help.

Parents
  • Hi

    LORA is not really supported by Nordic in particular, and this is a Zephyr specific sample project, so we're not too familiar with it. I would say the first step here would be to enable some debugging in your config files to get some more logging information, as these error messages don't provide any error message or code that points to why the transmission fails.

    Then, if you can't get anywhere by debugging, please try asking in the Zephyr Discord channel for example which is a great place to get help or information on Zephyr related matters.

    Best regards,

    Simon

  • Hello. Thanks for the answer. If you look at the driver code, it seems that this occurs through the calculation of airtime (transmission takes too long). If you take the function without checking, the transmission will take 2-3 times longer than in the picture from the receiver. I thought maybe this is due to the missing clock speed or something like that?

Reply
  • Hello. Thanks for the answer. If you look at the driver code, it seems that this occurs through the calculation of airtime (transmission takes too long). If you take the function without checking, the transmission will take 2-3 times longer than in the picture from the receiver. I thought maybe this is due to the missing clock speed or something like that?

Children
  • What do you mean by "missing clock speed" in this context? What clock are you referring to, and do you mean that it's incorrectly calibrated or that it's configured incorrectly/not at all somewhere?

    Best regards,

    Simon

  • I have two crystals, one at 32 kHz, the other at 32 MHz. Maybe the module needs more frequency and can't turn on 32 MHz or something. By the way, I reduced the SPI frequency by half and the transfers became noticeably faster.

  • The transfers become faster and you're also now able to actually see LORA transmissions?

    When the radio is running, the 32MHz crystal should indeed be on, but this is generally something the controller handles itself. Since it works at lower speeds, maybe the crystal(s) aren't tuned correctly. Do you have the datasheets of the crystals and I will take a look at their load capacitance and come back to you with some suggested load capacitor values.

    Just for reference, what speed is your SPI running at now?

    Best regards,

    Simon