X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=boards%2Fstm32-p103%2Fexamples%2Fusbmouse%2Fcfg%2Fcfg_i2s.h;fp=boards%2Fstm32-p103%2Fexamples%2Fusbmouse%2Fcfg%2Fcfg_i2s.h;h=6657157e5c73704c9b2d265f6e3d4e910f3b12f2;hb=21ee60ddc5488f5fb26da3a2cd0b9e9f33a776a3;hp=0000000000000000000000000000000000000000;hpb=b5efa6c4ecc0a6b13fa69c8fcb5cd8ed437121d1;p=bertos.git diff --git a/boards/stm32-p103/examples/usbmouse/cfg/cfg_i2s.h b/boards/stm32-p103/examples/usbmouse/cfg/cfg_i2s.h new file mode 100644 index 00000000..6657157e --- /dev/null +++ b/boards/stm32-p103/examples/usbmouse/cfg/cfg_i2s.h @@ -0,0 +1,74 @@ +/** + * \file + * + * + * \brief Configuration file for I2S module. + * + * + * \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 */