JaapBraam / LoRaWanGateway

A LoRaWan Gateway in LUA
MIT License
225 stars 74 forks source link

OTAA worked! #15

Closed dlarue closed 7 years ago

dlarue commented 7 years ago

I still have one of your gateways running(one of 4 here) and after having built a full multi-channel gateway I was doing some testing and fired up a node which I'd previously provisioned with OTAA code. I saw some strange messages on TTN data page and then realized it was the single channel node with OTAA I had setup long ago without any luck getting it to work. Low and behold your gateway picked it up on the same Freq and up on TTN it showed data.

Fantastic!

Thanks for the great testbed and this might be an option for attendees of my workshops as long as they expect to use their nodes close to their homes or offices. IIRC you said the range of this multi SF gateway was down to a few hundred meters.

JaapBraam commented 7 years ago

You'r welcome!

webfrank commented 7 years ago

Hi, could you provide a sample code for arduino+lmic working with oats and lua? I tried several configurations but at maximum I got recv UNKNOWN 5555aaaae400000000000190010001575a502d49425431352d53000000000000000000000000000000000000000000003034356330363035633563610000000000000000000000000000000000000000373939393930313938000000000000000000000000000000000000000000000056352e302e302e313200000056352e300000000000000000000000000000000001000000000000375000401f282301003139322e3136382e312e313137000000000000003139322e3136382e312e310000000000000000003235352e3235352e3235352e300000000000000030343a35633a30363a30353a63353a6361000000

from lua console.

dlarue commented 7 years ago

This is the standard IBM LMIC 1.5 example for OTAA with a couple of tweaks for Single Channel Operation(SCN). It's been a while but I believe it did work. Granted, I used US915 Freq so changes required to make that happen were done.

` /***

include

include <hal/hal.h>

include

// This EUI must be in little-endian format, so least-significant-byte // first. When copying an EUI from ttnctl output, this means to reverse // the bytes. For TTN issued EUIs the last bytes should be 0xD5, 0xB3, // 0x70. static const u1_t PROGMEM APPEUI[8]={ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; //lsb void os_getArtEui (u1_t* buf) { memcpy_P(buf, APPEUI, 8);}

// This should also be in little endian format, see above. static const u1_t PROGMEM DEVEUI[8]={ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; //lsb void os_getDevEui (u1_t* buf) { memcpy_P(buf, DEVEUI, 8);}

// This key should be in big endian format (or, since it is not really a // number but a block of memory, endianness does not really apply). In // practice, a key taken from ttnctl can be copied as-is. // The key shown here is the semtech default key. static const u1_t PROGMEM APPKEY[16] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; void os_getDevKey (u1_t* buf) { memcpy_P(buf, APPKEY, 16);}

static uint8_t mydata[] = "Hello, world! "; static osjob_t sendjob;

// Schedule TX every this many seconds (might become longer due to duty // cycle limitations). const unsigned TX_INTERVAL = 60; //sec

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

void onEvent (ev_t ev) { Serial.print(os_getTime()); Serial.print(": "); switch(ev) { case EV_SCAN_TIMEOUT: Serial.println(F("EV_SCAN_TIMEOUT")); break; case EV_BEACON_FOUND: Serial.println(F("EV_BEACON_FOUND")); break; case EV_BEACON_MISSED: Serial.println(F("EV_BEACON_MISSED")); break; case EV_BEACON_TRACKED: Serial.println(F("EV_BEACON_TRACKED")); break; case EV_JOINING: Serial.println(F("EV_JOINING")); break; case EV_JOINED: Serial.println(F("EV_JOINED"));

        // Disable link check validation (automatically enabled
        // during join, but not supported by TTN at this time).
        LMIC_setLinkCheckMode(0);
        break;
    case EV_RFU1:
        Serial.println(F("EV_RFU1"));
        break;
    case EV_JOIN_FAILED:
        Serial.println(F("EV_JOIN_FAILED"));
        //SCN DEBUG
        // Show TX channel (channel numbers are local to LMIC)
        Serial.print("Send, txCnhl: ");
        Serial.print(LMIC.txChnl);
        Serial.print("  Send, freq: ");
        Serial.println(LMIC.freq);
        break;
    case EV_REJOIN_FAILED:
        Serial.println(F("EV_REJOIN_FAILED"));
        break;
        break;
    case EV_TXCOMPLETE:
        Serial.println(F("EV_TXCOMPLETE (includes waiting for RX windows)"));
        if (LMIC.txrxFlags & TXRX_ACK)
          Serial.println(F("Received ack"));
        if (LMIC.dataLen) {
          Serial.println(F("Received "));
          Serial.println(LMIC.dataLen);
          Serial.println(F(" bytes of payload"));
        }
        // Schedule next transmission
        os_setTimedCallback(&sendjob, os_getTime()+sec2osticks(TX_INTERVAL), do_send);
        break;
    case EV_LOST_TSYNC:
        Serial.println(F("EV_LOST_TSYNC"));
        break;
    case EV_RESET:
        Serial.println(F("EV_RESET"));
        break;
    case EV_RXCOMPLETE:
        // data received in ping slot
        Serial.println(F("EV_RXCOMPLETE"));
        break;
    case EV_LINK_DEAD:
        Serial.println(F("EV_LINK_DEAD"));
        break;
    case EV_LINK_ALIVE:
        Serial.println(F("EV_LINK_ALIVE"));
        break;
     default:
        Serial.println(F("Unknown event"));
        break;
}

}

void do_send(osjob_t* j){ //SCN DEBUG // Show TX channel (channel numbers are local to LMIC) Serial.print("Send, txCnhl: "); Serial.print(LMIC.txChnl); Serial.print(" Send, freq: "); Serial.println(LMIC.freq); // // Check if there is not a current TX/RX job running if (LMIC.opmode & OP_TXRXPEND) { Serial.println(F("OP_TXRXPEND, not sending")); } else { // Prepare upstream data transmission at the next possible time. LMIC_setTxData2(1, mydata, sizeof(mydata)-1, 0); Serial.println(F("Packet queued")); } // Next TX is scheduled after TX_COMPLETE event. }

void setup() { Serial.begin(9600); Serial.println(F("Starting"));

#ifdef VCC_ENABLE
// For Pinoccio Scout boards
pinMode(VCC_ENABLE, OUTPUT);
digitalWrite(VCC_ENABLE, HIGH);
delay(1000);
#endif

// LMIC init
os_init();
// Reset the MAC state. Session and pending data transfers will be discarded.
LMIC_reset();

//SCN disable all but chan 0 for Single Channel Node(SCN) operation. Used with SCGateway
for( int i=1; i<72; i++ )
  LMIC_disableChannel(i);
//LMIC_enableChannel(0);
//
// disable all but the first 8 channels
//for (int channel=8; channel<8; ++channel) {
//    LMIC_disableChannel(channel);
//}
//for (int channel=8; channel<72; ++channel) {
//    LMIC_disableChannel(channel);
//}
Serial.println(F("Disabled some Channels"));

// Maximum TX power
LMIC.txpow = 27;
Serial.println(F("TxPOW=27"));

// expand the RX2 receive window by 1%  - Arduino inaccurate clock fix
LMIC_setClockError(MAX_CLOCK_ERROR * 1 / 100);

// Start job (sending automatically starts OTAA too)
do_send(&sendjob);

}

void loop() { os_runloop_once(); }

`