您的位置 首页 新能源

51单片机驱动TEA5767调频收音机芯片C程序

完整的源代码下载地址:http:www51heicombbsdpj-19294-1html下面是程序的主要部分:*———–TEA5767驱动———–*

完好的源代码下载地址:http://www.51hei.com/bbs/dpj-19294-1.html下面是程序的首要部分:

/*———– TEA5767 驱动———–*/
/*—— 外部晶振为 12MHz——-*/
/*——–最终修正2011.02.26——-*/
#include “STC12C5620AD.H”
#include “IIC.H”
#include “delay.h”
#include “Radio.H”
#include “Channel_Handle.H”

#define Max_Freq 108000
#define Min_Freq 87500
/**********************声明外部变量**************************/
extern uchardataDisplay_FM[9]; //From Main.c
/********************** 界说变量**************************/
uchar TEA5767_Write_Data[5]={0x29,0x9e,0x40,0x12,0x40}; //要写入TEA5767的数据
uchar TEA5767_Read_Data[5];

unsignedlongFrequency;
unsigned int PLL=0x299e;
/********************** TEA5767 写入数据**************************/
void TEA5767_Write(void)
{
uchar i;
IIC_Start();
IIC_Write_Byte(0xc0); //TEA5767写地址
if(!IIC_Test_ACK())
{
for(i=0;i<5;i++)
{
IIC_Write_Byte(TEA5767_Write_Data[i]);
IIC_ACK();
}
}
I%&&&&&%_Stop();
}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/qiche/xinnengyuan/318109.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部