temporaryaccount

Results 5 comments of temporaryaccount

> You could try to install the version of libnewlib-arm-* from Ubuntu cosmic? Yes, I can confirm fixing the issue by installing the newer packages. Just get the [libnewlib-dev (2.4.0.20160527-4)](https://packages.ubuntu.com/cosmic/all/libnewlib-dev/download)...

Maybe these pieces of code ([band_eu433.go](https://github.com/brocaar/lorawan/blob/master/band/band_eu433.go), [RegionEU433.c](https://github.com/Lora-net/LoRaMac-node/blob/develop/src/mac/region/RegionEU433.c), [RegionEU433.h](https://github.com/Lora-net/LoRaMac-node/blob/develop/src/mac/region/RegionEU433.h)) can provide some reference material, for example this function has the minimum and maximum frequencies: ``` static bool VerifyTxFreq( uint32_t freq )...

I couldn't find any official documentation about the additional channels for EU433, so I'm trying to allocate the frequencies by myself. I have two questions though: 1. When we define...

Maybe you are hitting some kind of system limit like the number of opened "files" (nofile) which also includes the opened sockets. I would examine the system logs. And look...

> All data, hooks, and channels are stored in the AOF. That's unfortunate. Logically, the hooks and the channels are meta-data, and could be kept separately from the data. If...