专家
公告
财富商城
电子网
旗下网站
首页
问题库
专栏
标签库
话题
专家
NEW
门户
发布
提问题
发文章
51单片机
关于qn8035收音机程序
2019-07-15 15:13
发布
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮
站内问答
/
51单片机
19684
16
1650
哪位大神给我谅解下qn8035的c程序怎么搞啊,对于
单片机
开发现在也就一知半解的,才来公司,上司喊我先写个qn8035收音机练练手,以前没做过开发,开发手册看了,官方给的程序也看了,单个的程序基本都看懂了,但是要整合成一个完整的收音机程序就不行了,主要是8035的主程序不懂。
友情提示:
此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
16条回答
bcxtwflove
2019-07-16 04:12
大神帮我看看这段大概对不对,思路是先初始化,然后就一直检测rds的信号质量,如果理想就开启声音,如果不理想就使能静音。中断检测功能键,如果有按键按下,就更改相应的数据,并写入8035寄存器。
unsigned char flag_fm,flag_aud;
unsigned int freq;
unsigned char aud;
unsigned char flag_on_off1=0;
unsigned char flag_on_off2=0;
/***************************************************************
*****************************************************************/
void timer0_init()
{
TMOD=0x01;
TH0=(65536-60000)/256;
TL0=(65536-60000)%256;
TR0=1;
ET0=1;
EA=1;
}
/****************************************************************
³õʼ»¯8035
*******************************************************************/
void qn_8035_init()
{
send_1byte(0x00,0x81);
delay(10);
send_1byte(0x18,0x10);
send_1byte(0x2f,0x90);
send_1byte(0x40,0x01);
send_1byte(0x46,0x05);
send_1byte(0x47,0xd0);
send_1byte(0x48,0xa8);
send_1byte(0x14,0xc6);
send_1byte(0x00,0x51);
send_1byte(0x00,0x11);
send_1byte(0x01,0x49);
}
/***********************************************************
д8035ƵÂÊ
************************************************************/
void write_8035freq(uint freq)
{
uchar freq_l;
uchar freq_h;
uint temp;
temp=(freq-6175)/5;
freq_l=temp%256;
freq_h=temp/256;
send_1byte(0x07,freq_l);
freq_h=freq_h&0x03;
send_1byte(0x0a,freq_h);
}
/***************************************************************
¶Á³ördsµçƽ£¬ÅжÏÐźÅÖÊÁ¿
****************************************************************/
uchar rds_RSSI_read()
{
uchar val;
uchar temp;
temp=read_1byte(0x03);
if(temp>46)
{
val=temp-46;
}
else
val=0;
return val;
}
/********************************************************************
ÒôÁ¿µ÷½Ú
***********************************************************************/
void audio_set(uchar aud)
{
send_1byte(0x14,aud);
}
/********************************************************************8
RDS³õʼ»¯
**********************************************************************/
void rds_set()
{
send_1byte(0x00,0xa0);//enable rds
}
/************************************************************************
ʹÄܾ²Òô
**************************************************************************/
void enable_mute()
{
sned_1byte(0x14,0xc6);
}
/***********************************************************************8
×Ô¶¯ËÑË÷
*************************************************************************/
/*
void auto_seek(uint freq_strat,uint freq_stop,uint freq_step)
{
uint freq_strat,freq_stop,freq_step;
uchar freq_h,freq_l;
uchar temp1,temp2;
freq_l=((freq_strat-6175)/5)%256;
freq_h=((freq_strat-6175)/5)/256;
temp1=freq_h;
send_1byte(0x08,freq_l);
freq_l=((freq_stop-6175)/5)%256;
freq_h=((freq_stop-6175)/5)/256;
temp2=freq_h;
send_1byte(0x09,freq_l);
freq_h=(temp1&0x0c)|(temp2&0x30)|(freq_step&0xc0);
send_1byte(0x0a,freq_h);
send_1byte(0x01,0x75);
send_1byte(0x00,0x10);
send_1byte(0x00,0x12);
delay(500);
}
*/
/***************************************************************
¹¦Äܼü ƵÂʼӼõºÍÉùÒô¼Ó¼õ
********************************************************************/
void key_fm()
{
if(key1==0)
{
delay(3);
if(flag_on_off1==0)
{
flag_on_off=1;
if(key1==0)
{
freq++;
if(freq>1080)
freq=980;
flag_fmm=1;
}
}
}
else if(key2==0)
{
delay(3);
if(flag_on_off1==0)
{
flag_on_off1=1;
if(key2==0)
{
freq--;
if(freq<980)
freq=1080;
flag_fm=1;
}
}
}
else
flag_on_off1=0;
}
void key_audio()
{
if(key3==0)
{
delay(3);
if(flag_on_off2==0)
{
flag_on_off2=1;
if(key3==0)
{
aud++;
if(aud>8)
aud=8;
flag_aud=1;
}
}
}
else if(key4==0)
{
delay(3);
if(flag_on_off2==0)
{
flag_on_off2=1;
if(key4==0)
{
if(aud!=0)
aud--;
else
aud=0;
flag_aud=1;
}
}
}
else
flag_on_off2=0;
}
/****************************************************
*****************************************************/
void main()
{
uchar temp;
freq=980;
aud=4;
timer0_init();
qn_8035_init();
write_8035freq(freq);
//audio_set(aud);
rds_set();
mask=rds_RSSI_read();
if(temp)
audio_set(aud);
else
enable_mute();
while(1)
{
temp=rds_RSSI_read();
if(temp==0)
enable_mute();
if(flag_fm==1)
{
write_8035freq(freq);
delay(10);
flag_fm=0;
}
if(flag_aud==1)
{
audio_set(aud);
delay(10);
flag_aud=0;
}
}
}
void timer0() interrupt 1
{
TH0=(65536-60000)/256;
TL0=(65536-60000)%256;
key_fm();
key_audio();
}
加载中...
查看其它16个回答
一周热门
更多
>
相关问题
【东软载波ESF0654 PDS开发板活动】开箱
1 个回答
东软载波ESF0654 PDS开发板外部中断
1 个回答
东软载波ESF0654 PDS开发板高级控制定时器AD16C4T
1 个回答
用串口调试助手为什么只能在hex模式接收发送而在文本模式不行
9 个回答
触摸芯片SC02B/SC04B在地砖灯的设计方案
1 个回答
相关文章
51单片机与蓝牙模块连接
0个评论
51单片机的硬件结构
0个评论
基于51单片机的无线遥控器制作
0个评论
51单片机 AD转换
0个评论
51单片机数码管递增显示
0个评论
如何实现对单片机寄存器的访问
0个评论
基于51单片机的指纹密码锁
0个评论
×
关闭
采纳回答
向帮助了您的知道网友说句感谢的话吧!
非常感谢!
确 认
×
关闭
编辑标签
最多设置5个标签!
51单片机
保存
关闭
×
关闭
举报内容
检举类型
检举内容
检举用户
检举原因
广告推广
恶意灌水
回答内容与提问无关
抄袭答案
其他
检举说明(必填)
提交
关闭
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮
×
付费偷看金额在0.1-10元之间
确定
×
关闭
您已邀请
0
人回答
查看邀请
擅长该话题的人
回答过该话题的人
我关注的人
unsigned char flag_fm,flag_aud;
unsigned int freq;
unsigned char aud;
unsigned char flag_on_off1=0;
unsigned char flag_on_off2=0;
/***************************************************************
*****************************************************************/
void timer0_init()
{
TMOD=0x01;
TH0=(65536-60000)/256;
TL0=(65536-60000)%256;
TR0=1;
ET0=1;
EA=1;
}
/****************************************************************
³õʼ»¯8035
*******************************************************************/
void qn_8035_init()
{
send_1byte(0x00,0x81);
delay(10);
send_1byte(0x18,0x10);
send_1byte(0x2f,0x90);
send_1byte(0x40,0x01);
send_1byte(0x46,0x05);
send_1byte(0x47,0xd0);
send_1byte(0x48,0xa8);
send_1byte(0x14,0xc6);
send_1byte(0x00,0x51);
send_1byte(0x00,0x11);
send_1byte(0x01,0x49);
}
/***********************************************************
д8035ƵÂÊ
************************************************************/
void write_8035freq(uint freq)
{
uchar freq_l;
uchar freq_h;
uint temp;
temp=(freq-6175)/5;
freq_l=temp%256;
freq_h=temp/256;
send_1byte(0x07,freq_l);
freq_h=freq_h&0x03;
send_1byte(0x0a,freq_h);
}
/***************************************************************
¶Á³ördsµçƽ£¬ÅжÏÐźÅÖÊÁ¿
****************************************************************/
uchar rds_RSSI_read()
{
uchar val;
uchar temp;
temp=read_1byte(0x03);
if(temp>46)
{
val=temp-46;
}
else
val=0;
return val;
}
/********************************************************************
ÒôÁ¿µ÷½Ú
***********************************************************************/
void audio_set(uchar aud)
{
send_1byte(0x14,aud);
}
/********************************************************************8
RDS³õʼ»¯
**********************************************************************/
void rds_set()
{
send_1byte(0x00,0xa0);//enable rds
}
/************************************************************************
ʹÄܾ²Òô
**************************************************************************/
void enable_mute()
{
sned_1byte(0x14,0xc6);
}
/***********************************************************************8
×Ô¶¯ËÑË÷
*************************************************************************/
/*
void auto_seek(uint freq_strat,uint freq_stop,uint freq_step)
{
uint freq_strat,freq_stop,freq_step;
uchar freq_h,freq_l;
uchar temp1,temp2;
freq_l=((freq_strat-6175)/5)%256;
freq_h=((freq_strat-6175)/5)/256;
temp1=freq_h;
send_1byte(0x08,freq_l);
freq_l=((freq_stop-6175)/5)%256;
freq_h=((freq_stop-6175)/5)/256;
temp2=freq_h;
send_1byte(0x09,freq_l);
freq_h=(temp1&0x0c)|(temp2&0x30)|(freq_step&0xc0);
send_1byte(0x0a,freq_h);
send_1byte(0x01,0x75);
send_1byte(0x00,0x10);
send_1byte(0x00,0x12);
delay(500);
}
*/
/***************************************************************
¹¦Äܼü ƵÂʼӼõºÍÉùÒô¼Ó¼õ
********************************************************************/
void key_fm()
{
if(key1==0)
{
delay(3);
if(flag_on_off1==0)
{
flag_on_off=1;
if(key1==0)
{
freq++;
if(freq>1080)
freq=980;
flag_fmm=1;
}
}
}
else if(key2==0)
{
delay(3);
if(flag_on_off1==0)
{
flag_on_off1=1;
if(key2==0)
{
freq--;
if(freq<980)
freq=1080;
flag_fm=1;
}
}
}
else
flag_on_off1=0;
}
void key_audio()
{
if(key3==0)
{
delay(3);
if(flag_on_off2==0)
{
flag_on_off2=1;
if(key3==0)
{
aud++;
if(aud>8)
aud=8;
flag_aud=1;
}
}
}
else if(key4==0)
{
delay(3);
if(flag_on_off2==0)
{
flag_on_off2=1;
if(key4==0)
{
if(aud!=0)
aud--;
else
aud=0;
flag_aud=1;
}
}
}
else
flag_on_off2=0;
}
/****************************************************
*****************************************************/
void main()
{
uchar temp;
freq=980;
aud=4;
timer0_init();
qn_8035_init();
write_8035freq(freq);
//audio_set(aud);
rds_set();
mask=rds_RSSI_read();
if(temp)
audio_set(aud);
else
enable_mute();
while(1)
{
temp=rds_RSSI_read();
if(temp==0)
enable_mute();
if(flag_fm==1)
{
write_8035freq(freq);
delay(10);
flag_fm=0;
}
if(flag_aud==1)
{
audio_set(aud);
delay(10);
flag_aud=0;
}
}
}
void timer0() interrupt 1
{
TH0=(65536-60000)/256;
TL0=(65536-60000)%256;
key_fm();
key_audio();
}
一周热门 更多>