LSE crystal for ST32MP1 - FC 135 38.768 kHz
Hi!
I noticed this.
The FC-135 32.768 kHz crystall with CL = 12.5 pF, ESR max = 70 kOhm and C0 = 1.0 pF is suitable for MP1 products.
The gmcrit is 2.1631 uA/V.
When I do the math, i found out that gain margin is below 5.
C0 = 1.0*10^-12;
CL = 12.5*10^-12;
ESR = 70*10^3;
F = 32.768*10^3;
Cs = 7*10^-12; % Assume that stray capacitance is 7 pF
gm = 8.5*10^-6;
% Gain margins critical
gm_crit = 4*ESR*(2*pi*F)^2*(C0 + CL)^2
gain_margin = gm/gm_crit
% Capacitors
C = (2*CL - 2*Cs)*10^12
Output:
gm_crit = 2.1631e-06
gain_margin = 3.9295
C = 11.0000

Because the gm value of 8.5 can be found here

Why does ST recommend FC-135 32.768 kHz when the gm_crit_max is below the gm_crit value?

