fabian18
fabian18
> (also note, that the 6Lo-ND state machine is slightly different. Since UNREACHABLE is an extension to ND (RFC 7048), and if I interpret RFC 6776, section 13 correctly, it...
> Can you provide a test procudure and output? ```diff diff --git a/cpu/samd5x/periph/pm.c b/cpu/samd5x/periph/pm.c index e06b3c6dd6..67ef1c980d 100644 --- a/cpu/samd5x/periph/pm.c +++ b/cpu/samd5x/periph/pm.c @@ -21,7 +21,7 @@ #include "periph/pm.h" -#define ENABLE_DEBUG 0...
> 2023-12-31 15:18:49,850 # 2024-01-02 12:24:20 That's a bit unexpected that it is about one and a half days in the future. But executing `rtc gettime` again returns the correct...
> Output of gnrc_networking will be added. This is how (well) it works at the moment. 1232 bytes to me seems to be a buffer limit. When sending multiple pings...
``` > ping -c 100 -s 175 fe80::6477:aa29:ecd5:ef9f 2025-02-16 16:24:22,391 # ping -c 100 -s 175 fe80::6477:aa29:ecd5:ef9f 2025-02-16 16:24:23,358 # 183 bytes from fe80::6477:aa29:ecd5:ef9f%7: icmp_seq=0 ttl=64 rssi=-38 dBm time=965.339 ms...
> When sending multiple pings something is breaks. The issue with multiple pings is that the sender (IPV6) pushes to send the second ping request even before the last reply...
You mean this for example for [sx126x](https://www.mouser.com/datasheet/2/761/DS_SX1261-2_V1.1-1307803.pdf#%5B%7B%22num%22%3A133%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C54%2C744%2Cnull%5D)? This is not the approach that our company chose to go but I agree this is a good one. We are really using...
Both can be used in one binary but there is one default. https://github.com/fabian18/RIOT/blob/ed44a434641ff0516a01fea885c5e32625beb558/sys/include/net/loramac.h#L442-L447 The `else` in the Makefile should then probably only choose the default. OTAA can be disabled at...
Instead of that the receiver has to purge an old prefix, could the originator of the prefix declare it as invalid by setting the valid lifetime to 0 in a...
> This allows to write applications that are independent of the RTC peripheral and allows the implementation of on-time change callbacks. How would I implement an on-time change callback? You...