X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=boards%2Fstm32-p103%2Ftemplates%2Fkernel%2Fcfg%2Fcfg_i2s.h;fp=boards%2Fstm32-p103%2Ftemplates%2Fkernel%2Fcfg%2Fcfg_i2s.h;h=52fa88481f8e731d13b32b7d5529c402b2156f6d;hb=02bb2b3d13447ada9613eacadd38ada1bb5b8773;hp=0000000000000000000000000000000000000000;hpb=c4c3ad2edbffae2b04e5d22d6fa3fa5de6feeb68;p=bertos.git diff --git a/boards/stm32-p103/templates/kernel/cfg/cfg_i2s.h b/boards/stm32-p103/templates/kernel/cfg/cfg_i2s.h new file mode 100644 index 00000000..52fa8848 --- /dev/null +++ b/boards/stm32-p103/templates/kernel/cfg/cfg_i2s.h @@ -0,0 +1,75 @@ +/** + * \file + * + * + * \brief Configuration file for I2S module. + * + * \version $Id$ + * + * \author Luca Ottaviano + */ + +#ifndef CFG_I2S_H +#define CFG_I2S_H + +/** + * Length of each play buffer. + * + * $WIZ$ type = "int" + */ +#define CONFIG_PLAY_BUF_LEN 8192 + +/** + * Sampling frequency of the audio file. + * + * $WIZ$ type = "int" + * $WIZ$ min = 32000 + * $WIZ$ max = 192000 + */ +#define CONFIG_SAMPLE_FREQ 44100UL + +/** + * Module logging level. + * + * $WIZ$ type = "enum" + * $WIZ$ value_list = "log_level" + */ +#define I2S_LOG_LEVEL LOG_LVL_INFO + +/** + * Module logging format. + * + * $WIZ$ type = "enum" + * $WIZ$ value_list = "log_format" + */ +#define I2S_LOG_FORMAT LOG_FMT_TERSE + +#endif /* CFG_I2S_H */