Maduino Lora Radio (915M)

hello,
Im trying to use Maduino Lora Radio (915M)https://www.makerfabs.com/maduino-lora-radio-433m-868m-915m.html with chripStack and mikrotik WAP LoRa9 gateway ,us 915 sub1 and I’m facing a few problems with it.

I’m trying the ttn_abp example from MCCI lorawan lmic lib v3.2.0. I can see the Unconfirmed Data Up and Unconfirmed Data Down in the gateway traffic page.

from the arduino serial monitor Im getting :
Starting
9654: EV_TXSTART
Packet queued
139471: EV_TXCOMPLETE (includes waiting for RX windows)
3890090: EV_TXSTART
Packet queued
4019924: EV_TXCOMPLETE (includes waiting for RX windows)

I tried both of thus pin mapping:
// Pin mapping
const lmic_pinmap lmic_pins = {
.nss = 10,
.rxtx = LMIC_UNUSED_PIN,
.rst = 9,
.dio = {2, 6, LMIC_UNUSED_PIN},
};

and :
// Pin mapping
const lmic_pinmap lmic_pins = {
.nss = 10,
.rxtx = LMIC_UNUSED_PIN,
.rst = 9,
.dio = {2, 6, 7},
};

and for both of them I’m not getting the message back from the gateway.
I have been trying for a long time. I really appreciate if anyone know what could the problem be.

This is being discussed at the LMIC, #664. Sorry I’ve not been around here; need to turn on email notifications.