mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-06-15 22:08:23 +00:00
Align multicast class-b ping-slot config.
This aligns the multicast class-b ping-slot configuration with the way how it is configured in the device-profile. This deprecates the class_b_ping_slot_period field in favor of the class_b_ping_slot_nb_k field, which should be a value between 0 - 7 (this is defined and explained by the LoRaWAN specification). Closes #255.
This commit is contained in:
@ -164,8 +164,15 @@ message MulticastGroup {
|
||||
uint32 frequency = 11;
|
||||
|
||||
// Ping-slot period (only for Class-B).
|
||||
// Deprecated: use class_b_ping_slot_nb_k.
|
||||
uint32 class_b_ping_slot_period = 12;
|
||||
|
||||
// Class-B ping-slots per beacon period (only for Class-B).
|
||||
// Valid options are: 0 - 7;
|
||||
//
|
||||
// The actual number of ping-slots per beacon period equals to 2^k.
|
||||
uint32 class_b_ping_slot_nb_k = 14;
|
||||
|
||||
// Scheduling type (only for Class-C).
|
||||
MulticastGroupSchedulingType class_c_scheduling_type = 13;
|
||||
}
|
||||
|
Reference in New Issue
Block a user