Using STM assembly files

I am looking to make a sound level meter in my project and found some libraries from STM. They are provided in assembly. Can I include these in my project just like any other C/C++ library? Do I need to do anything special to use them?

Thanks.

It’s possible to include assembly code inside a C file, then you can use all the other tools as usual (Web IDE, Particle Dev, CLI).

You’ll need to research how to include Inline Assembly with GCC. Check this page for example:
https://www.cs.uaf.edu/2012/fall/cs301/lecture/10_01_link_with_cpp.html

Great!
Thanks. I’ll take a look at the link.