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