xmos / fwk_io

I/O Framework
Other
2 stars 10 forks source link

added pcm2pdm lib #82

Closed alexyiuxmos closed 11 months ago

mbanth commented 11 months ago

@xhuw, I have asked @alexyiuxmos to move the PCM to PDM converter files from sln_voice to fwk_io. This PR brings those files on to a feature branch within fwk_io.

I am unsure about the numerous CMake files included in the PR. Can you please take a quick look and let me know if they are necessary?

xhuw commented 11 months ago

Looks like @alexyiuxmos has commited many build artefacts generated by cmake which should not have been committed.

most likely make was run without specifying the build directory and that means it dumped all its build artefacts in the source directories. Then a git add . probably included them all.

When running cmake always specify a build directory: cmake -B build. Then all the build artefacts will end up in the build/ directory which you can include the the .gitignore file.

This PR needs a tidy though