Orne Brocaar
Orne Brocaar
The current `js/README.md` refers to the usage of login based JWT tokens. This has been deprecated in favor of API keys that can be created using the ChirpStack Application Server...
## Summary Implement periodic duty-cycle reporting and management such that when enabled, the gateway will not exceed the maximum allowed duty-cycle. See previous discussions: * https://github.com/brocaar/chirpstack-network-server/issues/383 * https://github.com/brocaar/chirpstack-network-server/issues/370
Context: * https://www.chirpstack.io/network-server/features/device-status/ * https://forum.chirpstack.io/t/device-status-message-shows-conflicting-battery-level-external-power-source/9069
This so that "mobile" (that should not use ADR) can still be configured to use a fixed data-rate (e.g. to avoid the usage of SF12). Maybe also configure TX Power?
### Is this a bug or a feature request? Feature / improvement ### What did you expect? When creating a or updating a routing profile, the NS should validate that...
## Version(s) of meta-rust https://github.com/meta-rust/meta-rust/commit/0f950f5e333a1c8999320bf18232144f3dd9c80e ## Version(s) of poky and/or oe-core zeus ## Expected result My binary to work fine on a Raspberry Pi 1 B+ without crashing :-) It...
I'm working on an [application](https://github.com/brocaar/chirpstack-concentratord) which implements the SX1301/2 HAL as a daemon. One of the features is to re-configure the concentrator channel-plan, without restarting the daemon. The initial startup...
I believe these two options are equal: ```rust let options = MqttOptions::new("123", "localhost", 1883); let options = MqttOptions::parse_url("mqtt://example.com:1883?client_id=123").unwrap(); ``` The `url` crate is used to parse the transport, hostname and...
With these changes, I no longer get the error: > trait `EncodeCounterValue` is not implemented for `u32` when compiling to mips. I have also added additional trait implementations for the...
Code that compiles fine for ARMv7 and AMD64, fails when compiling for MIPS (`mipsel-unknown-linux-musl`): ``` ... the trait `EncodeCounterValue` is not implemented for `u32` | = help: the following other...