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

LoraWAN-MAC-in-C library, adapted to run under the Arduino environment

Results 100 arduino-lmic issues
Sort by recently updated
recently updated
newest added

`assert()`s are generally harmful, particularly as they cause a device hang in this implementation (rather than a restart) -- you'll have to roll a truck to get the device going...

bug
enhancement

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...

question

In order to work around network issues, client software must always find out when `LMIC_reset()` has been called. `EV_RESET` is supposed to be this notification, but it's not guaranteed to...

bug
enhancement

**Describe the bug** I noticed that the MAC command MCMD_RXParamSetupReq does not seem to be adapted for EU868 specs, but only for US like specs. The following lines in the...

bug
compliance

Hi, I getting this error while I run the code in Arduino UNO. using ttn_abp.ino Serial Monitor. Error: Starting 7143: EV_TXSTART Packet queued FAILURE C:\Users\issel\Documents\Arduino\libraries\arduino-lmic-master\src\lmic\radio.c:923 lmic_pins configuration is: const lmic_pinmap...

question

**Describe the bug** After installing the library, Arduino starts with error-messages "non ASCII characters in filenames". In the Linux Version of Arduino no dashes are allowed in filenames (and so...

trouble report

**Describe your question or issue** I am porting the MCCI to some asian modules. // Pin mapping const lmic_pinmap lmic_pins = { .nss = RADIO_NSS, .rxtx = LMIC_UNUSED_PIN, .rst =...

question

Due to FSK operations not being fully stable and not being mandatory for LoRaWAN, I would like to disable it to prevent any potential problems. What is the best way...

question
compliance

Unfortunately, neither `LMIC_unjoin()`, nor `LMIC_startJoining()` are safe to be called outside the LMIC. They will corrupt state if the LMIC is actively doing work. But they are published as APIs....

bug

I would like to know how to configure the MISO, MOSI, SCK and SS pins for SPI in the case when I'm using the custom board? From hal.cpp I can...

question