Skip to content

TinyDSP CONFIGURATION

Info

This header file configures the entire TinyDSP module, and each submodule includes this header file. It defines the configuration options and macros for TinyDSP, allowing users to customize settings as needed. By modifying the configuration options in this header file, users can easily adjust the behavior and functionality of TinyDSP to meet specific requirements. The documentation update speed is slow and may not be consistent with the actual code, please refer to the actual code.

Tip

For platform acceleration options, please set them in the TinyMath configuration file.

/**
 * @file tiny_dsp_config.h
 * @author SHUAIWEN CUI (SHUAIWEN001@e.ntu.edu.sg)
 * @brief The configuration file for the tiny_dsp middleware.
 * @version 1.0
 * @date 2025-04-27
 * @copyright Copyright (c) 2025
 *
 */

#ifndef __TINY_DSPP_CONFIG__
#define __TINY_DSPP_CONFIG__

#ifdef __cplusplus
extern "C"
{
#endif

/* DEPENDENCIES */
#include "tiny_math.h"


#ifdef __cplusplus
}
#endif

#endif /* __TINY_DSPP_CONFIG__ */