附上源代码:
#include "DAC8168.h"
/*************
延时函数
*************/
void DelayNS(unsigned long dly)//DAC8168.c使用
{
unsigned int i;
for(i=0;i<dly;i++);
}
/*************
DAC8168IO初始化
*************/
void DAC8168_GPIO_INIT(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB|RCC_APB2Periph_GPIOC,ENABLE);
//SYNC/CS PC5
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOC, &GPIO_InitStructure);
//PB1--CLK PB10--DIN
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1|GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOB, &GPIO_InitStructure);
}
/*************
写32位
*************/
void dac_write_32bit(uint32_t data_buf_32bit)
{
uint8_t cnt;
DAC8168_SYNC_SET;
DelayNS(5);//Minimum SYNC HIGH time 80ns
DAC8168_SYNC_RESET;
DelayNS(1);//SYNC to SCLK falling edge setup time 13ns
DAC8168_SCK_RESET;
for(cnt=32;cnt>0;cnt--)
{
DAC8168_SCK_SET;//上升沿时设置数据
if((data_buf_32bit&0x80000000)>0)
{
DAC8168_DIN_SET;
}
else
{
DAC8168_DIN_RESET;
}
DAC8168_SCK_RESET;//下降沿所存数据
data_buf_32bit=(data_buf_32bit<<1);
}
DelayNS(1);//SCLK falling edge to SYNC rising edge 10ns
DAC8168_SYNC_SET;
}
//0100 0001 0010 0000 1000 0000 0000 1111
//4120 800F //通道E
//0100 0001 1010 0000 1000 0000 0000 1111
//41A0 800F //通道G
//0111 0000 0110 1000 0000 0000 0000 0000
//70680000 //通道G
//
下面是头文件:
#ifndef __DAC8168_H
#define __DAC8168_H
#include "stm32f10x.h"
//SCK PB1
#define DAC8168_SCK_SET GPIO_SetBits(GPIOB,GPIO_Pin_1)
#define DAC8168_SCK_RESET GPIO_ResetBits(GPIOB,GPIO_Pin_1)
//DIN PB10
#define DAC8168_DIN_SET GPIO_SetBits(GPIOB,GPIO_Pin_10)
#define DAC8168_DIN_RESET GPIO_ResetBits(GPIOB,GPIO_Pin_10)
//SYNC PC5
#define DAC8168_SYNC_SET GPIO_SetBits(GPIOC,GPIO_Pin_5)
#define DAC8168_SYNC_RESET GPIO_ResetBits(GPIOC,GPIO_Pin_5)
/*************
DAC8168IO初始化
*************/
void DAC8168_GPIO_INIT(void);
/*************
写32位
*************/
void dac_write_32bit(uint32_t data_buf_32bit);
#endif /* __DAC8168_H */
最有main调用的是(部分)
dac_write_32bit(0x7068003E);//写入G并更新
Delay(100);
printf("-----DAC初始化设置完成-----
");
示波器看了SCK,DIN,SYNC 波形都没问题!
附上DAC8168的资料,求帮忙,谢谢啦,有用过的大佬吗?
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
原子哥有接触过吗?其他同类的DAC芯片
一周热门 更多>