Forgot to remove unused RDS buffers from the ipod remote tuner.
Also, use rds_reset() now to clear data on station change since the rds driver internal buffers are used. Change-Id: I043b09d661eeec21617381015347f0bcead4f7d4
This commit is contained in:
parent
523ef4edbd
commit
eaf6aad690
1 changed files with 2 additions and 6 deletions
|
@ -42,9 +42,6 @@ static int tuner_frequency = 0;
|
|||
static int tuner_signal_power = 0;
|
||||
static bool radio_tuned = false;
|
||||
|
||||
static char rds_radioname[9];
|
||||
static char rds_radioinfo[65];
|
||||
|
||||
static void rmt_tuner_signal_power(unsigned char value)
|
||||
{
|
||||
tuner_signal_power = (int)(value);
|
||||
|
@ -68,9 +65,8 @@ static void rmt_tuner_set_freq(int curr_freq)
|
|||
{
|
||||
radio_tuned = false;
|
||||
tuner_signal_power = 0;
|
||||
/* clear rds name and info */
|
||||
memset(rds_radioname,' ',sizeof(rds_radioname));
|
||||
memset(rds_radioinfo,' ',sizeof(rds_radioinfo));
|
||||
/* clear rds data */
|
||||
rds_reset();
|
||||
/* ex: 00 01 63 14 = 90.9MHz */
|
||||
unsigned char data[] = {0x07, 0x0B, 0x00, 0x01, 0x63, 0x14};
|
||||
|
||||
|
|
Loading…
Reference in a new issue