arduino-lmic icon indicating copy to clipboard operation
arduino-lmic copied to clipboard

Objenious : EV_JOIN_TXCOMPLETE: no JoinAccept

Open maitrekobayashi opened this issue 3 years ago • 8 comments

Hi again,

I'm trying to run the ttn-otaa.ino from the latest github mainline code. My problem seems to be a recurent one but the solutions provided didn't work. Here what i got on the terminal :

16:14:46.425 -> Starting 16:14:46.465 -> Packet queued 16:14:46.465 -> 1767: EV_JOINING 16:14:49.940 -> 220993: EV_TXSTART 16:14:56.960 -> 657246: EV_JOIN_TXCOMPLETE: no JoinAccept 16:15:58.439 -> 4496983: EV_TXSTART 16:16:05.432 -> 4933240: EV_JOIN_TXCOMPLETE: no JoinAccept [...]

Here my pinmapping :

// Pin mapping
const lmic_pinmap lmic_pins = {
    .nss = 10,
    .rxtx = LMIC_UNUSED_PIN,
    .rst = 5,
    .dio = {2, 3, 4},
};

Here my lmic_project_config.h :

#define CFG_eu868 1
#define DISABLE_BEACONS
#define DISABLE_PING
#define CFG_sx1272_radio 1

Point 1 : I tried all the possibilities about lsb, msb. The DevEUI, AppEUI and AppKey I'm using here worked well with a (STM32)L073RZ+SX1272 (with Keil compiler) on this same Objenious server. Point 2 : I tried (as you told others users to try) with adding LMIC_setClockError(MAX_CLOCK_ERROR * 10 / 100); between the LMIC_reset(); and the do_send(&sendjob); in the main

So I'm currently in a lack of solutions to try, maybe someone already got the same problem ?

Thanks

Paul

  • Version of LMIC being used : last
  • Version of Arduino IDE being used : 1.8.13
  • Network provider : Objenious (bouygues telecom, France)
  • Region : EU868
  • Board : Uno R3
  • Radio : Semtech SX1272 (mbed shield)

maitrekobayashi avatar Apr 20 '21 14:04 maitrekobayashi