update NAC3

This commit is contained in:
Sebastien Bourdeauducq 2022-03-29 08:49:43 +08:00
parent 69cda517f6
commit b1cfd343eb
5 changed files with 12 additions and 12 deletions

View File

@ -381,8 +381,8 @@ class AD53xx:
gain_err = voltage_to_mu(vfs, self.offset_dacs, self.vref) - (
offset_err + 0xffff)
# NAC3TODO assert offset_err <= 0
# NAC3TODO assert gain_err >= 0
assert offset_err <= 0
assert gain_err >= 0
self.core.break_realtime()
self.write_offset_mu(channel, 0x8000-offset_err)

View File

@ -62,8 +62,8 @@ class AD9912:
:param data: Data to be written: int32
:param length: Length in bytes (1-4)
"""
# NAC3TODO assert length > 0
# NAC3TODO assert length <= 4
assert length > 0
assert length <= 4
self.bus.set_config_mu(SPI_CONFIG, 16,
SPIT_DDS_WR, self.chip_select)
self.bus.write((addr | ((length - 1) << 13)) << 16)
@ -80,8 +80,8 @@ class AD9912:
:param length: Length in bytes (1-4)
:return: Data read
"""
# NAC3TODO assert length > 0
# NAC3TODO assert length <= 4
assert length > 0
assert length <= 4
self.bus.set_config_mu(SPI_CONFIG, 16,
SPIT_DDS_WR, self.chip_select)
self.bus.write((addr | ((length - 1) << 13) | 0x8000) << 16)

View File

@ -274,7 +274,7 @@ class Fastino:
while gain > 1 << gain_exponent:
gain_exponent += 1
gain_exponent += order*rate_exponent
# NAC3TODO assert gain_exponent <= order*16
assert gain_exponent <= order*16
self.stage_cic_mu(rate_mantissa - 1, rate_exponent, gain_exponent)
return rate_mantissa << rate_exponent

View File

@ -411,7 +411,7 @@ class CPLD:
"""
ftw_max = 1 << 4
ftw = ftw_max // div
# NAC3TODO assert ftw * div == ftw_max
assert ftw * div == ftw_max
if self.sync.is_some():
self.sync.unwrap().set_mu(ftw)

View File

@ -45,11 +45,11 @@
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1648348280,
"narHash": "sha256-zPotCWV0l1EgxJp/1MIUNvhCiMoEmpn5fnARrLNa6Ak=",
"lastModified": 1648508200,
"narHash": "sha256-8ohq5rj5rV9xyHDbU0oT/2CXT917XQYtxU92GIC+43s=",
"ref": "master",
"rev": "bed33a7421b2c8f6b595f8feaa602de041bcc14f",
"revCount": 695,
"rev": "a38cc0444456392fba6949367e4073ee9df149bf",
"revCount": 705,
"type": "git",
"url": "https://git.m-labs.hk/m-labs/nac3.git"
},