obsidian-notes/射频/PLL/LMX/2572控制程序/定频.md
CSSC-WORK\murmur 3e6078442b init version
2024-04-15 11:19:57 +08:00

50 lines
959 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: 定频
updated: 2022-01-09 02:57:28Z
created: 2022-01-08 13:17:43Z
tags:
- mcu
- pll
- 代码块
---
$f_{VCO} = f_{PD} × [PLL\_N + (PLL\_NUM / PLL\_DEN)]$
其中,$f_{VCO} / f_{PD}$ 得整数部分,$f_{VCO} \% f_{PD}$ 得小数部分, 即$PLL\_NUM / PLL\_DEN$
与835乘以2^24得小数寄存器值不同
PLL_DEN取fPD值的2^nn=0,1,2,3,4倍可简化运算小数部分/2^n=PLL_NUM移位即可没有额外的除法运算此时步进
$f_▲=f_{PD}/PLL\_DEN=1/2^n=10.50.250.1250.0625 Hz$
R0 对应
R36 对应PLL_N
R37 对应MASH_SEED_EN和PFD_DLY_SEL
R38 对应PLL_DEN[31:16]
R39 对应PLL_DEN[15:0]
R40 对应MASH_SEED[31:16]//调节相位用
R41 对应MASH_SEED[15:0]
R42 对应PLL_NUM[31:16]
R43 对应PLL_NUM[15:0]
R44 对应A功率调节和A/B输出开关以及MESH
R45 对应A输入源和B功率调节
R46 对应B输入源
R75 对应DIV分频数
#PLL
#mcu
#代码块