資料介紹
Table of Contents
AD5770R Mbed Example
Supported Device
Introduction
The AD5770R is a 6-channel, 14-bit resolution, low noise, programmable current output digital-to-analog converter (DAC) for photonics control applications. This chip incorporates a 1.25?V on-chip voltage reference, a 2.5 kΩ precision resistor for reference current generation, die temperature, output monitoring functions, fault alarm, and reset functions.
The AD5770R contains five 14-bit resolution current sourcing DAC channels and one 14-bit resolution current sourcing/ sinking DAC channel.
Channel 0 can be configured to sink up to 60 mA and source up to 300 mA. Channel 1 to Channel 5 have multiple, programmable output current sourcing ranges, set by register access. Each DAC can operate with a wide power supply rail from 0.8?V to AVDD ? 0.4 V for optimizing power efficiency and thermal power dissipation.
This page describes the AD5770R firmware example running on the SDP-K1 controller board, interfacing with the AD5770R evaluation board. The firmware example comprises 3 layers of software, built on top of the Mbed OS.
- AD5770R No-OS Driver - AD5770R device C API
- Mbed Platform Drivers - Hardware Abstraction Layer (SPI, GPIO, …) to adapt No-OS driver to Mbed OS
The AD5770R Mbed firmware example can be used as a starting point for developing your own code in your own environment utilizing the benefits of the Mbed platform. The Mbed Platform simplifies the overall software development process by providing a common low level driver abstraction. This reduces the hardware dependency as any Mbed enabled board can be used with same firmware with little to no modifications, usually just changing the pin mapping.
Useful links
Hardware Setup
The AD5770R Evaluation Board is connected to SDP-K1 using the 120-pin SDP Connector. The evaluation board must be powered externally, typically using an external 3.3V DC supply connected to the AVDD input supply terminal, if using the default power supply jumper settings.
The SDP-K1 is connected to a PC through a USB cable. The firmware image, a .BIN file created using the online mbed compiler, can be loaded into SDP-K1 board by copying the .BIN file to the drive representing the SDP-K1. The SDP-K1 provides a USB to Serial link (UART) and any serial terminal (such as Teraterm, Putty, Coolterm, etc) can be used to connect to by configuring terminal with the necessary settings (serial port, baud rate, data bits, etc).
The default jumper configuration of the evaluation board selects a diode dummy load on all of the output channels. Refer to the evaluation board user guide for the jumper configuration necessary to route the output current to the screw terminal.
AD5770R Mbed Firmware
Source Code
The latest version of the example code is available here:
Quick Start
If you are familiar with the Mbed platform, the following is a basic list of steps required to start running the code:
- Connect the evaluation board to the SDP-K1 controller board, and power it appropriately, usually 3.3V to AVDD.
- Connect the SDP-K1 controller board to your computer over USB.
- Go to the link of the code provided above in the 'Source Code' section and import the code into the Mbed online compiler
- Ensure the SDP-K1 controller board is selected as the target
- If a different controller board is being used, then it should be selected, and the pin out in app_config.h may also need to be updated.
- In the Mbed Online IDE compile the code.
- After a successful compile a binary file (.BIN) will be downloaded to your computer.
- Drag and drop this binary to the USB drive corresponding to the SDP-K1 controller board.
- Start up a serial terminal emulator (e.g. Tera Term)
- Find the com-port your controller board is connected on and select it.
- Set the baud-rate for 115200 baud, 8 data, no parity, 1 stop bit.
- Reset the controller board and connect.
- The terminal windows should display the console menu providing access to the AD5770R functionality.
Firmware in Detail
The example source code is made available from Mbed, and can be imported into the online Mbed compiler and compiled there, entirely in a web browser. The example is menu driven, providing keyboard shortcuts to access/execute the menus items, and prompting for further inputs where necessary. When the example runs, it attempts to connect and initialize the AD5770R. The configuration used is defined in the ad5770r_user_config.h file, which can be modified as needs be to suit specific applications.
Note: While much of the functionality of the AD5770R No-OS driver is made available through the console UI, not all function are available. The additional AD5770R functionality can only be configured the ad5770r_user_config.c file.
Main Menu
The AD5770R Console App main menu provides basic initialization/reset type functions, and access to several sub-menus that provide more detailed configuration and control settings. Like most menus in the firmware, the menu options are framed by a header and footer that display status information related to the functions on the menu.
The value of the scratchpad register is displayed in both the header and the footer. After reading the scratchpad value for the header, the value is incremented and written back to the device, such that the scratchpad footer value should always be equal to the header value + 1. This can be useful a debug aid to confirm communications.
DAC Operations
This menu provides the ability to set the Input and DAC register values, and control the update of the DAC using both the hardware and software LDAC functions. The ordering of menu items is intended to follow the order in which actions are typically performed by the user.
There are three ways in which the DAC output may be controlled using this menu.
- Write to Input Channel(s), set software LDAC shadow value, then write software LDAC to update DAC output
- Write to Input Channel(s), toggle hardware LDAC
- Write to DAC Channel to directly update DAC output
Toggling a channel in the software LDAC shadow sets a bit corresponding to that channel in a mask. This SW LDAC Channel shadow value can then be written in a single transaction, transferring the input to the DAC value for all of the channels which are set in the shadow mask.
The channels affected by the hardware LDAC pin toggling are set in the ad5770r_user_config.h file at compile time.
- 帶w7500的mbed-os示例套接字
- 兆易創新GD32F450ZI-mbed開發板電路原理圖
- 兆易創新GD32E103VB-mbed開發板電路原理圖
- 兆易創新GD32F307VG-mbed開發板電路原理圖
- AN-2010:AD5770R功能的其他詳細信息、背景和示例
- NanDAC+mbed示例
- AD411x mbed示例
- ADT74xx-ADT73xx mbed示例
- AD5770R pmod和ADICUP3029參考設計
- AD5592R/AD5593R mbed示例
- AD5770R Evaluation Software
- AD5770R IBIS Model
- AD5770R Evaluation Software
- AD5770R IBIS Model
- 2 mbed 中國 - mbed 內存模型 72次下載
- 電阻電路等效變換示例(三) 302次閱讀
- 電阻電路等效變換示例(二) 462次閱讀
- 基于DShanMCU-R128s2-DevKit開發智能手表 662次閱讀
- 移動數據的編程示例 1131次閱讀
- MATLAB中特殊圖形的繪制示例 741次閱讀
- 弱符號的作用與示例 869次閱讀
- 如何對挑選出的demonstration示例進行排序 466次閱讀
- Linux中的18個tar命令示例 835次閱讀
- Django的簡單應用示例 933次閱讀
- Hi3861其他驅動的開發示例 3303次閱讀
- 微雪電子 STM32開發板簡介 7263次閱讀
- AD5770R:分辨率低噪音可編電流輸出的數模轉換器 5255次閱讀
- 基于HT48R50A的LED點陣+LCD顯示程序 1368次閱讀
- ARM公司低調升級Mbed_為物聯網應用做準備 2728次閱讀
- mbed軟件開發平臺入門學習基礎 1.2w次閱讀
下載排行
本周
- 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次下載 | 免費
評論
查看更多