summaryrefslogtreecommitdiff
path: root/apps/recorder/radio.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/radio.h')
-rw-r--r--apps/recorder/radio.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/recorder/radio.h b/apps/recorder/radio.h
index add3989061..f04c14d6d3 100644
--- a/apps/recorder/radio.h
+++ b/apps/recorder/radio.h
@@ -50,8 +50,14 @@ struct fm_region_setting
50 int freq_max; 50 int freq_max;
51 int freq_step; 51 int freq_step;
52#if (CONFIG_TUNER & TEA5767) 52#if (CONFIG_TUNER & TEA5767)
53 int deemphasis; /* 0: 50us, 1: 75us */ 53 char deemphasis; /* 0: 50us, 1: 75us */
54 int band; /* 0: europe, 1: japan (BL in TEA spec)*/ 54 char band; /* 0: europe, 1: japan (BL in TEA spec)*/
55 /* Note: "region" parameter is just for display atm and is not compiled. */
56 #define FM_REGION_ENTRY(region, fmin, fmax, fstep, deemph, band) \
57 { fmin, fmax, fstep, deemph, band }
58#else
59 #define FM_REGION_ENTRY(region, fmin, fmax, fstep, deemph, band) \
60 { fmin, fmax, fstep }
55#endif 61#endif
56}; 62};
57 63