惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
腾讯CDC
大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
博客园_首页
F
Fortinet All Blogs
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
博客园 - 【当耐特】
量子位
博客园 - 叶小钗
M
MIT News - Artificial intelligence
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
MyScale Blog
MyScale Blog
爱范儿
爱范儿
The Cloudflare Blog
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog

博客园 - 普罗大众

debug的一个问题 phy_simulators之nr_dlsim之4层接收的优化 phy_simulators之nr_dlsim之一个bug phy_simulators之nr_dlsim开始 phy_simulators之nr_pbchsim之PBCH解码 phy_simulators之nr_pbchsim之PBCH-DMRS检测 phy_simulators之nr_pbchsim之仿真的局限 phy_simulators之nr_pbchsim之SSS检测 phy_simulators之nr_pbchsim之信道 phy_simulators之nr_pbchsim之初始同步 phy_simulators之nr_pbchsim之发送端 phy_simulators之nr_pbchsim之PSS检测 phy_simulators之dlsim.c debug方法三:printf debug方法二:用vs code debug方法一:直接用gdb命令 phy_simulators的编译生成方法三:CMakePresets.json phy_simulators的编译生成方法二:手动写cmake脚本 phy_simulators的编译生成方法一:build_oai --phy_simulators open air interface的phy_simultors编译过了 AI App的使用感觉 从“图像视频编码”到“通信物理层” MAC pc + Ubuntu + OAI 原来Fourier是法国的,怪不得法国小波分析这么牛 整理心情
phy_simulators之nr_pbchsim之一些结构
普罗大众 · 2026-04-05 · via 博客园 - 普罗大众

对于ssb检测,nr_ue_ssb_scan_t,nr_ssb_search_params_t,NR_DL_FRAME_PARMS这三个结构比较重要吧

1)

Function nr_initial_sync()

    -> struct PHY_VARS_NR_UE

        -> struct NR_UE_COMMON

            -> rxdata

       -> struct NR_DL_FRAME_PARMS

    NR_DL_FRAME_PARMS *fp = &ue->frame_parms;

    -> struct nr_ue_ssb_scan_t

           nr_ue_ssb_scan_t ssb_info[numGscn];

           int s = 0;

           nr_ue_ssb_scan_t *ssbInfo = &ssb_info[s];

2)

Function nr_scan_ssb(struct arg)

    -> structure nr_ssb_search_params_t

nr_ue_ssb_scan_t *ssbInfo = (nr_ue_ssb_scan_t *)arg;

    -> structure NR_DL_FRAME_PARMS

NR_DL_FRAME_PARMS *fp = ssbInfo->fp;

        一些函数只能使用fp :(