summaryrefslogtreecommitdiff
path: root/firmware/export/config/sansae200v2.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config/sansae200v2.h')
-rw-r--r--firmware/export/config/sansae200v2.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/firmware/export/config/sansae200v2.h b/firmware/export/config/sansae200v2.h
index 34c2cd98ad..a03dfe05a6 100644
--- a/firmware/export/config/sansae200v2.h
+++ b/firmware/export/config/sansae200v2.h
@@ -12,7 +12,14 @@
12/* define this if you have recording possibility */ 12/* define this if you have recording possibility */
13#define HAVE_RECORDING 13#define HAVE_RECORDING
14 14
15#define REC_SAMPR_CAPS SAMPR_CAP_ALL 15#define REC_SAMPR_CAPS (SAMPR_CAP_48 | SAMPR_CAP_44 | SAMPR_CAP_32 | \
16 SAMPR_CAP_24 | SAMPR_CAP_22 | SAMPR_CAP_16 | \
17 SAMPR_CAP_12 | SAMPR_CAP_11 | SAMPR_CAP_8)
18
19/* because the samplerates don't match at each point, we must be able to
20 * tell PCM which set of rates to use. not needed if recording rates are
21 * a simple subset of playback rates and are equal values. */
22#define CONFIG_SAMPR_TYPES
16 23
17/* Define bitmask of input sources - recordable bitmask can be defined 24/* Define bitmask of input sources - recordable bitmask can be defined
18 explicitly if different */ 25 explicitly if different */