Terry Moore
Terry Moore
> Implementing `lmic.c` changes in [#479 (comment)](https://github.com/mcci-catena/arduino-lmic/issues/479#issuecomment-543756628) helped to fix the issue for me... Not sure what you're referring to? There was a pull request #481 which is still marked...
Unfortunately, I don't really have time to look into this; I would need to use the network simulator and I continue to be under the gun for other things. I...
You need to check the symbol defined for your board in the IDE, and compare to the symbols used in getpinmap_thisboard.cpp.
@HouzuoGuo this is definitely needed. I've wanted this for a while; as have others (see #651). However, it's a heavy lift, and MCCI can't fund me to do it at...
It's more complicated than that. Look at the differences between EU and US. I inherited the architecture, after EU and US had been implemented with conditional compiles; sorry for the...
Ah. This is perhaps a problem. I remember this one. Bottom line: the spec is not clear, and I think the V1.0.2 tests require different behavior. However, the tests I...
It's historical. `hal_ticks()` returns `u4_t`, and has forever. I assume because `micros()` is also unsigned. I personally don't think `os_getTime()` should be signed, because it's easier to deal with overflow...
Changing to `uid_t` is not the right thing, `u1_t` is correct. Something is wrong with your compile environment, hard to say what it might be. `u1_t` is used everywhere in...
Hi @bertrik, In EU868 and other regions (although not in US915), the LMIC already enforces duty cycle restrictions (for regulatory compliance). These are less stringent than the TTN restrictions, but...
The uflt12f decoder is for *unsigned* floats, to save bits for values like relative humidity that can't physically take negative values. That's why the name begins with `u`. So this...