27#include <ILCDataTypes.h>
46 static int32_t
Inc(int32_t index, int32_t limit) {
return (index + 1) < limit ? (index + 1) : 0; }
56 return (broadcastCounter + 1) < 16 ? (broadcastCounter + 1) : 0;
Methods for round robin token/index.
Definition RoundRobin.h:36
static uint8_t BroadcastCounter(uint8_t broadcastCounter)
Returns ILC next broadcast counter.
Definition RoundRobin.h:55
static int32_t Inc(int32_t index, int32_t limit)
Increase index.
Definition RoundRobin.h:46