DSP Link Wrapper¶
[This is a work in progress, but is being captured here for the new software release]
Critical Link provides a C++ wrapper class and basic IPC facilities to ease the development of DSP core applications on the ARM.
Setting up a project to use DspLib is the same as setting up a basic ARM C++ project, with the additional configuration settings:
- Add a BUILD Variable called "LIBDSP" and point it to the libdsp directory included with your development kit distribution.
- Add "${LIBDSP}" to your include path
- Add "${LIBDSP}/Release" or "${LIBDSP}/Debug" to your linker path
- Add "dsp" and "pthread" to your libraries
- Add a BUILD Variable called "DSPLINK" and point it to the dsplink base directory.
- Add "${DSPLINK}/gpp/export/BIN/Linux/OMAPL138/DEBUG/dsplink.lib" to the linker "Other Objects"
Go to top