MCF52259 PSTCLK/TCLK emissions

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

MCF52259 PSTCLK/TCLK emissions

ソリューションへジャンプ
1,105件の閲覧回数
carlnormansuret
Contributor V

Hi All,

 

I have been doing some emissions testing and PSTCLK/TCLK pin is causing us to fail (80Mhz fundamental).

 

I have JTAG_EN low (we dont use JTAG). This trace between pin 43 (LQFP) and the debug header is just acting as an antenna and radiating 80Mhz. 

 

I dont want this pin oscillating unless the debugger is attached, how do I stop this pin unless the debugger / programmer is attached? Or, what is the ideal way to stop it radiating so much noise.

ラベル(1)
0 件の賞賛
返信
1 解決策
992件の閲覧回数
carlnormansuret
Contributor V

Hi Guys,

After some searching I found a way to shut down a lot of the noise generated by the MCF52259!

Shut down the PST[3:0] pins, i set them to outputs and set them low

PDDPAR &= (~0b00001111); 
DDRDD |= 0b00001111; 
PORTDD &= (~0b00001111); 

turn off the PSTCLK pin so it does nothing

SYNCR |= 0x0040;

There is a newer version of the MCF52259 reference manual, I was using V1 which is missing some information, V4 has more information.

元の投稿で解決策を見る

0 件の賞賛
返信
1 返信
993件の閲覧回数
carlnormansuret
Contributor V

Hi Guys,

After some searching I found a way to shut down a lot of the noise generated by the MCF52259!

Shut down the PST[3:0] pins, i set them to outputs and set them low

PDDPAR &= (~0b00001111); 
DDRDD |= 0b00001111; 
PORTDD &= (~0b00001111); 

turn off the PSTCLK pin so it does nothing

SYNCR |= 0x0040;

There is a newer version of the MCF52259 reference manual, I was using V1 which is missing some information, V4 has more information.

0 件の賞賛
返信