论坛风格切换切换到宽版
  • 5958阅读
  • 7回复

Kg105v/u编程计算方法!!! [复制链接]

上一主题 下一主题
离线bd8te
 
发帖
4254
只看楼主 倒序阅读 0楼 发表于: 2002-07-25
求kg105v/u的编程计算方法望赐教。谢谢!!
离线bg7nr
发帖
1225
只看该作者 1楼 发表于: 2002-07-26
可参考
a number of parameters need to be worked out;

the 12mhz tcxo is divided by 16 (ic101) to provide a 750khz reference frequency. this reference frequency is sampled and divided by the 'reference division rate' to determine the channel spacings.

reference division rate - 750khz/12.5khz = 60 = c30 in reversed hex as used by the key (see tx(r) & rx(r) in the table below).

reference division rate - 750khz/10khz = 75 = b40 in reversed hex as used by the key (see tx(r) & rx(r) in the table below).

each address code always starts with f i.e. f* f* f* so that for the reference division rate for 12.5khz c30 works out to be fc f3 f0.

d = basic division rate = frequency of operation / 12.5

d = prescaler division rate fixed at 64

n = number of complete divisions

r = remainder of the basic division rate

'n' & 'a' are calculated using the following equation; d = ( n x d ) + a / works out to the following in the example below
11.602 = (0.181 x 64) + 0.018

a tx frequency of 145.025mhz = 145.025/12.5 = 11.602 = d then divided by d (fixed at 64)

11.602/64 = 0.18128125 = 0.181 number of complete divisions = n = 181 converted into hex and reversed = 5b0 (see tx(n) in the table below).

0.181x64 = 11.584-11.602 = 0.018 = a = remainder of the basic division rate

18 converted into hex and reversed = 21 (see tx(a) in the table below).

receive is similar but 21.6mhz has to be taken off the rx frequency

a rx frequency of 145.625mhz = 145.625-21.6/12.5 = 9.922/64 = 0.15503125

0.155 number of complete divisions = n = 155 converted into hex then reversed b90 (see rx(n) in the table below).

0.155x64 = 9.92-9.922 = 0.002 = a = remainder of the basic division rate

2 converted into hex and reversed = 20 (see rx(a) in the table below).


key 2732 eprom coding
channel #1 address 0 1 2 3 4 5 6 7 8 9 a b c d e f
tx(a) tx(n) tx(r) rx(a) rx(n) rx(r)
channel data - example 145.025 tx 145.625 rx f2 f1 f5 fb f0 fc f3 f0 f2 f0 fb f9 f0 fc f3 f0
channel #2 address 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f
tx(a) tx(n) tx(r) rx(a) rx(n) rx(r)
channel data - example 145.050 tx 145.650 rx f4 f1 f5 fb f0 fc f3 f0 f4 f0 fb f9 f0 fc f3 f0
离线BA7KW
发帖
16344
只看该作者 2楼 发表于: 2002-07-28
怎么那么复杂???
这种机器本来就有专用软件的嘛,那用这么复杂。
离线bg7nr
发帖
1225
只看该作者 3楼 发表于: 2002-07-29
可借此学习eprom的编程计算方法。
离线x720
发帖
292
只看该作者 4楼 发表于: 2003-05-18
回复: 怎么那么复杂???
最初由 ba7kw 发表
这种机器本来就有专用软件的嘛,那用这么复杂。



kw大哥.手上可否有.我想要.
  bg7ibp
      73!
离线BA7JG
发帖
628
只看该作者 5楼 发表于: 2003-05-19
KYODO写频软件
最初由 x720 发表
kw大哥.手上可否有.我想要.
  bg7ibp
      73!


附件是kyodo写频软件。

73!
离线BG7IMY
发帖
778
只看该作者 6楼 发表于: 2003-05-19
回复: KYODO写频软件
最初由 ba7jg 发表
附件是kyodo写频软件。
73!


您好!请问这软件写频,是使用写频器还是用本机直接写到eprom里的呢?
能否介绍一下写频经验?如有这软件的使用说明可否发一份给我?谢谢您!
tianpm@21cn.com
离线bh7ldx
只看该作者 7楼 发表于: 2015-03-24
学习。感谢楼主