phaser: avoid OverflowError (2)

This commit is contained in:
Sebastien Bourdeauducq 2022-08-05 22:59:47 +08:00
parent a2d0ebabfe
commit c1d865c107
1 changed files with 1 additions and 1 deletions

View File

@ -797,7 +797,7 @@ class PhaserChannel:
self.phaser = phaser
self.index = index
self.trf_mmap = TRF372017(trf).get_mmap()
self.trf_mmap = [int32(x) for x in self.trf_mmap] # NAC3TODO https://git.m-labs.hk/M-Labs/nac3/issues/14
self.trf_mmap = [int32(uint32(x)) for x in self.trf_mmap] # NAC3TODO https://git.m-labs.hk/M-Labs/nac3/issues/14
self.oscillator = [PhaserOscillator(self, osc) for osc in range(5)]