nuttx-apps icon indicating copy to clipboard operation
nuttx-apps copied to clipboard

Add audiolib fmsynthesizer

Open takayoshi-k opened this issue 3 years ago • 3 comments

Summary

Add FM synthesizer library as one of audio utility libraries and an example using it.

Impact

Just add a new additonal library and an example.

Testing

Test if keyboard and mmlplayer examples works well on sprsense board.

takayoshi-k avatar Aug 16 '22 12:08 takayoshi-k

Hi @takayoshik, does it work on other boards that have audio support like stm32f4discovery and raspberrypi pico? Or is it Spresense board only?

acassis avatar Aug 16 '22 21:08 acassis

Hi @acassis , I belive it works on other boards supporting audio, because no spresense specific code in it. But I didn't test it on them because I don't have. At least I did unit test on linux (those code is in this PR in audioutils/fmsynth/test) and it works well.

fmsynth is just making audio samples. So even if the board has no audio function, it works. nxaudio is an utility library for nuttx audio driver. So every boards supporting audio can works.

But, I dare say, it is depending on cpu performance. fmsynth is calculating every single sample. (It is the reason that I didn't use sinf() function of regular math library.)

takayoshi-k avatar Aug 16 '22 23:08 takayoshi-k

@pkarashchenko Thank you for your review. I modified. Please check it again.

takayoshi-k avatar Aug 16 '22 23:08 takayoshi-k

Hi @pkarashchenko I hadn't mension to you. I updated. Please check it again.

takayoshi-k avatar Aug 23 '22 00:08 takayoshi-k

Hi @pkarashchenko Regarding floh_walzer_right and floh_walzer_left is used in mmlplayer_main.c around on line 407.

takayoshi-k avatar Aug 23 '22 11:08 takayoshi-k

Few minor comments, but nothing that blocks from merging and can be fixed in follow-up PR

Thank you. I will remain them. And will be fix next time.

takayoshi-k avatar Aug 25 '22 09:08 takayoshi-k

Few minor comments, but nothing that blocks from merging and can be fixed in follow-up PR

Let me merge this PR.

masayuki2009 avatar Aug 25 '22 11:08 masayuki2009