MCPcopy Create free account
hub / github.com/Unipisa/Simu5G / decreaseNumerologyPeriodCounter

Method decreaseNumerologyPeriodCounter

src/simu5g/stack/mac/LteMacBase.cc:364–372  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

362}
363
364void LteMacBase::decreaseNumerologyPeriodCounter()
365{
366 for (auto& [index, counter] : numerologyPeriodCounter_) {
367 if (counter.current == 0) // reset
368 counter.current = counter.max - 1;
369 else
370 counter.current--;
371 }
372}
373
374/*
375 * Main functions

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected