Lff5
Lff5
I set seek(0) as a workaround for multi-bit fields to enforce little-endianness. ``` var readout_date = new Parser().endianess('little') .nest("readout_date", { type: new Parser().endianess('little') .bit5("day") .bit3("year_lower") .seek(0) // workaround for Big...
We are experiencing exactly this on the field! ~5% of the devices out of ~2k installed devices get silent every day. The stack is able to receive further downlinks but...
Hi all. That was a false alert. We couldn't lock up stack with just NbTrans and duty-cycle. Our issue was on application side. I will still comment on it here...
Any updates?
First, `pedalboard` is really awesome open source lib, Thanks! I too discovered that the `Limiter()` is not just limiting after finding out that the output files look like maxed out...
Hi, Running on Raspberry Pi 3 with old Raspbian GNU/Linux 10 (buster). Python 3.7.3 (default, Jul 25 2020, 13:03:44) strangely there is no __reversed__() function in dict object despite being...
I have the same issue with Restoring from NVM. Radio.sleep() must be called afterwards.
The latest release [v2023.12.07](https://github.com/project-chip/zap/releases/tag/v2023.12.07) is still corrupt. Tested on Apple M2 Pro on Ventura 13.3.
My current workaround is to call `Radio.Sleep()` and then `SX126xAntSwOff()` after lorawan init (with NVM) in application layer. Here is what the lorawan init looks like: https://github.com/zephyrproject-rtos/zephyr/blob/d45605e6a3dfe68e43207d15e3bfc003cbfaa72f/subsys/lorawan/lorawan.c#L682-L723