mirror of
https://github.com/opentx/opentx.git
synced 2025-07-24 16:55:20 +03:00
Almost entirely fixing print statements, but also a couple importing
changes, wrapped in try/excepts, and one case where dict.keys() not
being a list would be a problem.
Also reverts e41139a397
The real fix for #1907
31 lines
610 B
Python
Executable file
31 lines
610 B
Python
Executable file
#!/bin/env python
|
|
|
|
from __future__ import print_function
|
|
|
|
import math
|
|
|
|
samples = 1024
|
|
amplitudes = (32000, 0, 4000, 0, 4000)
|
|
|
|
max = 0
|
|
min = 0
|
|
|
|
for i in range(samples):
|
|
sample = 0.0
|
|
for harmonic, amplitude in enumerate(amplitudes):
|
|
sample += math.sin(math.pi*2*i*(harmonic+1)/samples) * amplitude / 2
|
|
sample = int(sample)
|
|
if sample > max:
|
|
max = sample
|
|
elif sample < min:
|
|
min = sample
|
|
print("%d," % sample, end=' ')
|
|
if i % 10 == 9:
|
|
print()
|
|
|
|
print()
|
|
print('Range is:', min, max)
|
|
|
|
if max > 32767 or min < -32768:
|
|
print("Invalid range!")
|
|
|