Tympan / Tympan_Library

Arduino/Teensy Library for Tympan Open Source Hearing Aid
MIT License
116 stars 31 forks source link

WDRC for left and right ear separately #28

Closed yuan9778 closed 2 years ago

yuan9778 commented 3 years ago

We tried to implement WDRC for left and right ear separately. That's 2 WDRC in total. Then RevD stop working, no output. I'm wondering why. The algorithms loaded are tested and should be no problem, so is it because the hardware (memory, storage or CPU) of RevD can't run such a heavy-duty algorithms?

Thanks in advance! Sanqing

chipaudette commented 3 years ago

The RevD has enough CPU to do something like 8 channels of FIR filtering + 8 channels of WDRC. The 8 channels can be used all on ear or you can divide them among the two ears.

The up-coming RevE should be able to do about 3x as many channels of this kind of time-domain processing. As we build toward the RevE release, I hope to expand the examples to include some stereo examples.

Chip

yuan9778 commented 2 years ago

Thanks much for your reply!