s08JM60 osc trimming

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

s08JM60 osc trimming

跳至解决方案
2,244 次查看
donw
Contributor IV

I am powering up my first hardware using s08JM60.

I am very unsure about the operation of the Clock Generator  (MCG)...

Using the cpu internal ~32.7khz oscillator I can trim the bus frequency by altering values in MCGTRM

[using the code below, the default TRIM value $80 gives a bus freq that gives me 115K baud out the serial comms SCI unit]

 

Using an external 32.768 khz oscillator, the bus freq. is ~10% too slow (for 115K baud generation) and the MCGTRM value does not alter the bus freq.

 Is this correct? How can I trim to get 115K baud?

 

 

internal  osc startup code:     
        ; MCGC2: BDIV=1,RANGE=0,HGO=0,LP=0,EREFS=0,ERCLKEN=0,EREFSTEN=0
        MOV     #$40,MCGC2             ; Set MCGC2 register
        ; MCGC1: CLKS=0,RDIV=0,IREFS=1,IRCLKEN=1,IREFSTEN=0
        MOV     #$06,MCGC1             ; Set MCGC1 register
        ; MCGC3: LOLIE=0,PLLS=0,CME=0,VDIV=1
        MOV     #$01,MCGC3             ; Set MCGC3 register
while_Cpu0:                            ; Wait until FLL is locked
        BRCLR   6,MCGSC,while_Cpu0

 

 external osc startup code is as above but does 

     MOV     #$06,MCGC1 

标签 (1)
0 项奖励
回复
1 解答
1,097 次查看
peg
Senior Contributor IV

Yes, that is correct!

You generally have a finer adjustment than the old ones though.

But it still gets "coarse" as you get up into these higher baudrates.

 

在原帖中查看解决方案

0 项奖励
回复
3 回复数
1,097 次查看
peg
Senior Contributor IV

Hi Don,

 

I did not check through your clock setup but it seems you are assuming that the trim register will affect the frequency when an external oscillator or crystal is used. This is NOT the case.

The trim register works by switching in additional capacitors into the INTERNAL oscillator and so ONLY affect the frequency of the internal oscillator.

 

0 项奖励
回复
1,097 次查看
donw
Contributor IV

OK, so to get a standard baud rate (such as 115K baud)

I must have a suitable external osc freq. which divides down/up to get

the correct bus freq., as is the requirement in older type uP's

0 项奖励
回复
1,098 次查看
peg
Senior Contributor IV

Yes, that is correct!

You generally have a finer adjustment than the old ones though.

But it still gets "coarse" as you get up into these higher baudrates.

 

0 项奖励
回复