diff options
Diffstat (limited to 'usrp2/sdr_lib/gen_cordic_consts.py')
-rwxr-xr-x | usrp2/sdr_lib/gen_cordic_consts.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/usrp2/sdr_lib/gen_cordic_consts.py b/usrp2/sdr_lib/gen_cordic_consts.py new file mode 100755 index 000000000..261e8c223 --- /dev/null +++ b/usrp2/sdr_lib/gen_cordic_consts.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python + +import math + +zwidth = 24 + +for i in range(24): + c = math.atan (1.0/(2**i)) / (2 * math.pi) * (1 << zwidth) + print "localparam c%02d = %d'd%d;" % (i, zwidth, round (c)) + |