mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-20 08:56:28 +08:00
Si5324: actually write value of N32 into registers.
This commit is contained in:
parent
bee9774bd5
commit
00100148f1
@ -45,6 +45,9 @@ def get_i2c_program(sys_clk_freq):
|
|||||||
[(0x68 << 1), 43, (N31 >> 16) & 0xff],
|
[(0x68 << 1), 43, (N31 >> 16) & 0xff],
|
||||||
[(0x68 << 1), 44, (N31 >> 8) & 0xff],
|
[(0x68 << 1), 44, (N31 >> 8) & 0xff],
|
||||||
[(0x68 << 1), 45, (N31) & 0xff],
|
[(0x68 << 1), 45, (N31) & 0xff],
|
||||||
|
[(0x68 << 1), 46, (N32 >> 16) & 0xff],
|
||||||
|
[(0x68 << 1), 47, (N32 >> 8) & 0xff],
|
||||||
|
[(0x68 << 1), 48, (N32) & 0xff],
|
||||||
[(0x68 << 1), 137, 0x01], # FASTLOCK=1
|
[(0x68 << 1), 137, 0x01], # FASTLOCK=1
|
||||||
[(0x68 << 1), 136, 0x40], # ICAL=1
|
[(0x68 << 1), 136, 0x40], # ICAL=1
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user