Page 1 of 1

power off CLK 1 and CLK 2

Posted: 23 Mar 2019, 16:48
by lw5dhg
Hello Andrey.
I need to turn off the CLK 1 and CLK 2 output on the Nano Vfo and Syntez_Si5351_Si570 synths how could I do this? Thank you

Re: power off CLK 1 and CLK 2

Posted: 23 Mar 2019, 19:36
by UR5FFR
Hi,
For turn off set CLK*_MULT const in config_sw.h to zero. For CLK1 & CLK2

Code: Select all

const long CLK0_MULT = 1;
const long CLK1_MULT = 0;
const long CLK2_MULT = 0;

Re: power off CLK 1 and CLK 2

Posted: 23 Mar 2019, 22:16
by lw5dhg
its working! thanks you very much!!