| 362 | } |
| 363 | |
| 364 | void 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 |
nothing calls this directly
no outgoing calls
no test coverage detected