summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/uda1380.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/export/uda1380.h b/firmware/export/uda1380.h
index f9c73d0471..c1fb6421ff 100644
--- a/firmware/export/uda1380.h
+++ b/firmware/export/uda1380.h
@@ -133,10 +133,10 @@ extern void audiohw_set_monitor(int enable);
133#define EQ_MODE_FLAT (0 << 14) 133#define EQ_MODE_FLAT (0 << 14)
134#define EQ_MODE_MIN (1 << 14) 134#define EQ_MODE_MIN (1 << 14)
135#define EQ_MODE_MAX (3 << 14) 135#define EQ_MODE_MAX (3 << 14)
136#define BASSL(x) (((x) & 0xF) << 8) 136#define BASSL(x) (((x) & 0x1E) << 7)
137#define BASSR(x) (((x) & 0xF) << 0) 137#define BASSR(x) (((x) & 0x1E) >> 1)
138#define TREBLEL(x) (((x) & 0x3) << 12) 138#define TREBLEL(x) (((x) & 0x6) << 11)
139#define TREBLER(x) (((x) & 0x3) << 4) 139#define TREBLER(x) (((x) & 0x6) << 3)
140#define BASS_MASK 0x0F0F 140#define BASS_MASK 0x0F0F
141#define TREBLE_MASK 0x3030 141#define TREBLE_MASK 0x3030
142 142