资料介绍
Table of Contents
nanoDAC+ No-OS Driver
Supported Devices
Overview
The AD5673R, AD5674R, AD5676, AD5676R, AD5675, AD5675R, AD5677R, AD5679R,AD5686, AD5686R, AD5696, AD5696R / AD5685R, AD5695R / AD5672R, AD5671R, AD5684, AD5684R, AD5694, AD5694R, AD5681R, AD5682R, AD5683R, AD5683, AD5691R, AD5692R, AD5693R, AD5693 are low power, single-channel/octal/quad, 16-/14-/12-bit, buffered voltage output digital-to-analog converter (DAC). All devices operate from a single 2.7 V to 5.5 V supply and are guaranteed monotonic by design.
The AD5673R, AD5674R, AD5676, AD5676R, AD5675, AD5675R, AD5677R, AD5679R,AD5686, AD5686R, AD5696, AD5696R / AD5685R, AD5695R / AD5672R, AD5671R, AD5684, AD5684R, AD5694, AD5694R include a gain select pin giving a full-scale output of 2.5 V (gain = 1) or 5 V (gain = 2).
The AD5673R, AD5674R, AD5676, AD5676R, AD5675, AD5675R, AD5672R, AD5671R,AD5677R, AD5679R, AD5686, AD5686R, AD5685R, AD5684, AD5684R, AD5695R, AD5694, AD5694R, AD5696, AD5696R,AD5681R, AD5682R, AD5683R, AD5683, AD5691R, AD5692R, AD5693R, AD5693 also incorporates a power-on reset circuit and a RSTSEL pin that ensures that the DAC outputs power up to zero scale or midscale and remain there until a valid write takes place. Each device contains a per channel power-down feature that reduces the current consumption of the device to 2 µA/2.5 µA / 4 µA while in power-down mode.
The AD5674R, AD5676, AD5676R, AD5672R, AD5679R, AD5686, AD5686R, AD5685R, AD5684, AD5684R, AD5681R, AD5682R, AD5683R, AD5683 employs a versatile serial peripheral interface (SPI) that operates at clock rates up to 50 MHz.
The AD5673R, AD5675, AD5675R, AD5677R, AD5695R, AD5671R, AD5694, AD5694R, AD5696, AD5696R, AD5691R, AD5692R, AD5693R, AD5693 use a versatile 2-wire serial interface that operates at clock rates up to 400 kHz.
All devices contain a VLOGIC pin intended for 1.8 V/3 V/5 V logic.
Applications:
- Optical transceivers
- Base-station power amplifiers
- Industrial automation
- Data acquisition systems
Driver Description
Functions Declarations
Function | Description |
---|---|
int32_t ad5686_init(struct ad5686_dev **device, struct ad5686_init_param init_param); | Initialize the device. |
int32_t ad5686_remove(struct ad5686_dev *dev); | Free the resources allocated by ad5686_init(). |
uint16_t ad5686_set_shift_reg(struct ad5686_dev *dev, uint8_t command, uint8_t address, uint16_t data); | Write to input register. |
void ad5686_write_register(struct ad5686_dev *dev, enum ad5686_dac_channels channel, uint16_t data); | Write to Input Register n (dependent on LDAC). |
void ad5686_update_register(struct ad5686_dev *dev, enum ad5686_dac_channels channel); | Update DAC Register n with contents of Input Register n |
void ad5686_write_update_register(struct ad5686_dev *dev, enum ad5686_dac_channels channel, uint16_t data); | Write to and update DAC channel n . |
uint16_t ad5686_read_back_register(struct ad5686_dev *dev, enum ad5686_dac_channels channel); | Read back Input Register n. |
void ad5686_power_mode(struct ad5686_dev *dev, enum ad5686_dac_channels channel, uint8_t mode); | Power down the selected channels. |
void ad5686_ldac_mask(struct ad5686_dev *dev, enum ad5686_dac_channels channel, uint8_t enable); | Set up LDAC mask register. |
void ad5686_software_reset(struct ad5686_dev *dev); | Software reset (power-on reset) |
void ad5686_internal_reference(struct ad5686_dev *dev, uint8_t value); | Write to Internal reference setup register |
void ad5686_daisy_chain_en(struct ad5686_dev *dev, uint8_t value); | Set up DCEN register (daisy-chain enable) |
void ad5686_read_back_en(struct ad5686_dev *dev, uint8_t value); | Set up readback register (readback enable) |
int32_t ad5686_gain_mode(struct ad5686_dev *dev, uint8_t value); | Set gain mode (AD5683 family specific) |
Types Declarations
enum ad5686_type { ID_AD5671R, ID_AD5672R, ID_AD5673R, ID_AD5674R, ID_AD5675R, ID_AD5676, ID_AD5676R, ID_AD5677R, ID_AD5679R, ID_AD5686, ID_AD5684R, ID_AD5685R, ID_AD5686R, ID_AD5694, ID_AD5694R, ID_AD5695R, ID_AD5696, ID_AD5696R, ID_AD5681R, ID_AD5682R, ID_AD5683R, ID_AD5683, ID_AD5691R, ID_AD5692R, ID_AD5693R, ID_AD5693 }; enum comm_type { SPI, I2C, }; enum ad5686_dac_channels { AD5686_CH_0 = 0, AD5686_CH_1, AD5686_CH_2, AD5686_CH_3, AD5686_CH_4, AD5686_CH_5, AD5686_CH_6, AD5686_CH_7, AD5686_CH_8, AD5686_CH_9, AD5686_CH_10, AD5686_CH_11, AD5686_CH_12, AD5686_CH_13, AD5686_CH_14, AD5686_CH_15, }; struct ad5686_chip_info { uint8_t resolution; uint8_t register_map; enum comm_type communication; const uint32_t *channel_addr; }; struct ad5686_dev { /* I2C */ i2c_desc *i2c_desc; /* SPI */ spi_desc *spi_desc; /* GPIO */ gpio_desc *gpio_reset; gpio_desc *gpio_ldac; /* Device Settings */ enum ad5686_type act_device; uint32_t power_down_mask; uint32_t ldac_mask; }; struct ad5686_init_param { /* I2C */ i2c_init_param i2c_init; /* SPI */ spi_init_param spi_init; /* GPIO */ int8_t gpio_reset; int8_t gpio_ldac; /* Device Settings */ enum ad5686_type act_device; }; |
Downloads
- AD5449-微控制器无操作系统驱动程序
- AD7291-微控制器无操作系统驱动程序
- AD5790-微控制器无操作系统驱动程序
- AD5754R-微控制器无操作系统驱动程序
- AD5684R-微控制器无操作系统驱动程序
- AD5162-微控制器无操作系统驱动程序
- AD7091R-适用于单片机平台的无操作系统驱动程序
- AD7091R-用于瑞萨微控制器平台的无操作系统驱动程序
- AD5669R-微控制器无操作系统驱动程序
- AD7298-微控制器无操作系统驱动程序
- AD7780-适用于单片机平台的无操作系统驱动程序
- AD5629R-微控制器无操作系统驱动程序
- AD5252-微控制器无操作系统驱动程序
- AD7799-微控制器无操作系统驱动程序
- AD5677R NanDAC+IIO Linux驱动程序
- 怎么编写Framebuffer驱动程序 403次阅读
- 深度解析全球操作系统格局 676次阅读
- 什么是实时操作系统(RTOS) 4349次阅读
- Windows文件系统过滤驱动程序介绍 1242次阅读
- 了解和使用无操作系统和平台驱动程序 1066次阅读
- 嵌入式Linux内核的驱动程序开发是怎样的 1415次阅读
- 驱动的概念和分类及安全性 3940次阅读
- 浅谈电脑驱动程序的工作原理 详解电脑驱动程序意义 2.9w次阅读
- 基于嵌入式Linux内核的系统设备驱动程序开发设计 1113次阅读
- 基于Linux2.6.30开发DS18B20的驱动程序的类型和文件操作接口函数详解 1377次阅读
- 嵌入式操作系统是什么_嵌入式操作系统有哪些 2w次阅读
- 8255A驱动程序 3193次阅读
- 8155驱动程序 3057次阅读
- Xilinx设备的驱动程序 7967次阅读
- PCI驱动程序开发实例 6702次阅读
下载排行
本周
- 1电子电路原理第七版PDF电子教材免费下载
- 0.00 MB | 1491次下载 | 免费
- 2单片机典型实例介绍
- 18.19 MB | 95次下载 | 1 积分
- 3S7-200PLC编程实例详细资料
- 1.17 MB | 27次下载 | 1 积分
- 4笔记本电脑主板的元件识别和讲解说明
- 4.28 MB | 18次下载 | 4 积分
- 5开关电源原理及各功能电路详解
- 0.38 MB | 11次下载 | 免费
- 6100W短波放大电路图
- 0.05 MB | 4次下载 | 3 积分
- 7基于单片机和 SG3525的程控开关电源设计
- 0.23 MB | 4次下载 | 免费
- 8基于AT89C2051/4051单片机编程器的实验
- 0.11 MB | 4次下载 | 免费
本月
- 1OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234313次下载 | 免费
- 2PADS 9.0 2009最新版 -下载
- 0.00 MB | 66304次下载 | 免费
- 3protel99下载protel99软件下载(中文版)
- 0.00 MB | 51209次下载 | 免费
- 4LabView 8.0 专业版下载 (3CD完整版)
- 0.00 MB | 51043次下载 | 免费
- 5555集成电路应用800例(新编版)
- 0.00 MB | 33562次下载 | 免费
- 6接口电路图大全
- 未知 | 30320次下载 | 免费
- 7Multisim 10下载Multisim 10 中文版
- 0.00 MB | 28588次下载 | 免费
- 8开关电源设计实例指南
- 未知 | 21539次下载 | 免费
总榜
- 1matlab软件下载入口
- 未知 | 935053次下载 | 免费
- 2protel99se软件下载(可英文版转中文版)
- 78.1 MB | 537793次下载 | 免费
- 3MATLAB 7.1 下载 (含软件介绍)
- 未知 | 420026次下载 | 免费
- 4OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234313次下载 | 免费
- 5Altium DXP2002下载入口
- 未知 | 233046次下载 | 免费
- 6电路仿真软件multisim 10.0免费下载
- 340992 | 191183次下载 | 免费
- 7十天学会AVR单片机与C语言视频教程 下载
- 158M | 183277次下载 | 免费
- 8proe5.0野火版下载(中文版免费下载)
- 未知 | 138039次下载 | 免费
评论
查看更多