首页 > 其他分享 >SLIV

SLIV

时间:2022-10-25 20:12:55浏览次数:23  
标签:mappingType 14 .. PDSCH SLIV TimeDomainResourceAllocation

SLIV defines the start symbol and the number of consecutive symbols for PDSCH allocation using Single Number.

SLIV = ((L-1)≤7)?(14*(L-1) + S):(14(14-L+1) + (14-1-S))

 

 

 

PDSCH/PUSCH mapping type in the above table is specified in RRC message as shown below.

PDSCH-TimeDomainResourceAllocation ::=      SEQUENCE {

    k0                                  INTEGER (1..3)

    mappingType                         ENUMERATED {typeA, typeB},

    startSymbolAndLength                BIT STRING (SIZE (7)) // SLIV

}

PUSCH-TimeDomainResourceAllocation ::=  SEQUENCE {

    k2                                  INTEGER (0..7)                          

    mappingType                         ENUMERATED {typeA, typeB},

    startSymbolAndLength                BIT STRING (SIZE (7)) // SLIV

}

 

标签:mappingType,14,..,PDSCH,SLIV,TimeDomainResourceAllocation
From: https://www.cnblogs.com/qxql2016/p/16826141.html

相关文章

  • flutter 效果实现 —— sliver 固定
    效果:说明:绿色块在向上滑动,距离顶部103的高度(即AppBar下面)时固定代码:classPinnedSliverPageextendsStatefulWidget{constPinnedSliverPage({Key?key}):......
  • flutter 常见组件的特殊用法 —— SliverAppBar
    SliverAppBar的组成特殊属性说明primary:true不同于AppBar通常有Scaffold包裹,其最大高度由父类约束。SliverAppBar完全由自身决定。当primary等于true时,其......