pepe_gmail wrote:
Do you have any intention to have CMSIS-DSP, DSP Library Collection available within micropython? I am specially interested in Matrix & Filter functionality.
It would be great to support this functionality of the MCU. But the tough question is how to expose the DSP to the user in a "Pythonic" way. Maybe the best way is to implement the numpy module (which I've wanted to do for sometime now) and use the DSP features to speed up the numpy operations. The other way I can think of is to just allow these operations in the inline assembler, then you have full power to do what you like, and also interface it with normal Python functions.
Can you give a more specific idea of how you would use DSP? When you say "matrix" functionality, do you mean matrix multiplication and inversion? If so, that would fit well into numpy.