Wiki

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
resources:tools-software:uc-drivers:renesas:ad5628 [24 Jul 2012 11:23] – Added arduino zip file. Dragos Bogdanresources:tools-software:uc-drivers:renesas:ad5628 [24 Jan 2021 18:22] (current) – Fix bad links Dragos Bogdan
Line 1: Line 1:
-====== AD5628 - Microcontroller No-OS Driver ====== +====== AD5628 - No-OS Driver for Renesas Microcontroller Platforms ====== 
- +{{page>:resources:tools-software:uc-drivers:ad5628}}
-===== Supported Devices ===== +
-  * [[adi>AD5628]] +
- +
-===== Evaluation Boards ===== +
-  * PmodDA4 +
- +
-===== Overview ===== +
- +
-The [[adi>AD5628]] device is a low power, octal, 12-bit, buffered voltage-output DAC. The device operates from a single 2.7 V to 5.5 V supply and is guaranteed monotonic by design. The AD5628 is available in both a 4 mm × 4 mm LFCSP and a 16-lead TSSOP. +
- +
-The AD5628 has an on-chip reference with an internal gain of 2. The AD5628-1 has an 1.25 V 5 ppm/°C reference, giving a full-scale output range of 2.5 V; the AD5628-2, has a 2.5 V 5 ppm/°C reference, giving a full-scale output range of 5 V. The on-board reference is off, at power-up, allowing the use of an external reference. The internal reference is enabled via a software write.  +
- +
-{{ :resources:tools-software:uc-drivers:renesas:pmod_da4.jpg? |}} +
- +
-The goal of this project (Microcontroller No-OS) is to be able to provide reference projects for lower end processors, which can't run Linux, or aren't running a specific operating system, to help those customers using microcontrollers with ADI parts. Here you can find a generic driver which can be used as a base for any microcontroller platform and also specific drivers for Renesas platforms.+
  
 **HW Platform(s):** **HW Platform(s):**
-  * [[http://am.renesas.com/products/tools/introductory_evaluation_tools/renesas_demo_kits/yrdkrl78g13/index.jsp|Renesas Demo Kit for RL78G13 (Renesas)]] +  * [[https://www.renesas.com/us/en/products/microcontrollers-microprocessors/rl78-low-power-8-16-bit-mcus/yrdkrl78g13-yrdkrl78g13-demonstration-kit-rl78g13|Renesas Demo Kit for RL78G13 (Renesas)]] 
-  * [[http://am.renesas.com/products/tools/introductory_evaluation_tools/renesas_demo_kits/yrdkrx62n/index.jsp|Renesas Demo Kit for RX62N (Renesas)]] +  * [[https://www.renesas.com/us/en/products/microcontrollers-microprocessors/rx-32-bit-performance-efficiency-mcus/yrdkrx62n-yrdkrx62n-demonstration-kit-rx62n|Renesas Demo Kit for RX62N (Renesas)]]
-  * [[http://www.digilentinc.com/Products/Detail.cfm?Prod=CEREBOT-MX3CK|Digilent Cerebot MX3cK (Digilent)]] +
-  * [[http://www.digilentinc.com/Products/Detail.cfm?Prod=CEREBOT-MC7|Cerebot MC7 (Digilent)]]+
  
-===== Driver Description ===== +===== Downloads =====
-The driver contains two parts: +
-  * The driver for the AD5628 part, which may be used, without modifications, with any microcontroller. +
-  * The Communication Driver, where the specific communication functions for the desired type of processor and communication protocol have to be implemented. This driver implements the communication with the device and hides the actual details of the communication protocol to the ADI driver.+
  
-The Communication Driver has a standard interface, so the AD5628 driver can be used exactly as it is provided. +<WRAP round download 80%
- +  * {{:resources:tools-software:uc-drivers:ad5628_generic.zip|AD5628 Generic Driver}}
-There are three functions which are called by the AD5628 driver: +
-  * SPI_Init() – initializes the communication peripheral. +
-  * SPI_Write() – writes data to the device. +
-  * SPI_Read() – reads data from the device. +
- +
-{{ :resources:tools-software:uc-drivers:renesas:spi_architecture.png? |}} +
-<WRAP centeralign> +
-SPI driver architecture +
-</WRAP> +
- +
-The following functions are implemented in this version of AD5628 driver: +
-^ Function       ^ Description     ^ +
-| unsigned char AD5628_Init(void) | Resets the device and performs several initializations. | +
-| void AD5628_PowerMode(unsigned char pwrMode) | Sets the device in a specific power mode. | +
-| void AD5628_Reset(void) | Resets the device. | +
-| void AD5628_SetInputRegister(unsigned long registerValue) | Writes a 32-bit data-word to the Input Register of the device. | +
- +
-===== Downloads ===== +
-  * {{:resources:tools-software:uc-drivers:renesas:ad5628_generic.zip|AD5628 Generic Driver}}+
   * {{:resources:tools-software:uc-drivers:renesas:ad5628_rl78g13.zip|AD5628 RL78G13 Driver}}   * {{:resources:tools-software:uc-drivers:renesas:ad5628_rl78g13.zip|AD5628 RL78G13 Driver}}
   * {{:resources:tools-software:uc-drivers:renesas:ad5628_rx62n.zip|AD5628 RX62N Driver}}   * {{:resources:tools-software:uc-drivers:renesas:ad5628_rx62n.zip|AD5628 RX62N Driver}}
-  * {{:resources:tools-software:uc-drivers:microchip:ad5628_pic32.zip|AD5628 PIC32 Driver}} +  * **AD5628 Driver           ** https://github.com/analogdevicesinc/no-OS/tree/master/drivers/dac/ad5628 
-  * {{:resources:tools-software:uc-drivers:microchip:ad5628_dspic33.zip|AD5628 DSPIC33 Driver}} +  * **PmodDA4 Demo for RL78G14** https://github.com/analogdevicesinc/no-OS/tree/master/Renesas/RL78G14/PmodDA4 
-  * {{:resources:tools-software:uc-drivers:microchip:ad5628_arduino.zip|AD5628 Arduino Driver}}+  * **RL78G14 Common Drivers  ** https://github.com/analogdevicesinc/no-OS/tree/master/Renesas/RL78G14/Common 
 +</WRAP>
  
 ====== Renesas RL78G13 Quick Start Guide ====== ====== Renesas RL78G13 Quick Start Guide ======
Line 59: Line 21:
  
 ==== Required Hardware ==== ==== Required Hardware ====
-  * [[http://am.renesas.com/products/tools/introductory_evaluation_tools/renesas_demo_kits/yrdkrl78g13/index.jsp|Renesas Demo Kit for RL78G13 (Renesas)]] +  * [[https://www.renesas.com/us/en/products/microcontrollers-microprocessors/rl78-low-power-8-16-bit-mcus/yrdkrl78g13-yrdkrl78g13-demonstration-kit-rl78g13|Renesas Demo Kit for RL78G13 (Renesas)]] 
-  * PmodDA4+  * [[http://www.digilentinc.com/Products/Detail.cfm?Prod=PMOD-DA4|PmodDA4]]
  
  
 ==== Required Software ==== ==== Required Software ====
   * [[http://www.iar.com/en/Products/IAR-Embedded-Workbench/Renesas-RL78/|IAR Embedded Workbench for Renesas RL78 Kickstart]]   * [[http://www.iar.com/en/Products/IAR-Embedded-Workbench/Renesas-RL78/|IAR Embedded Workbench for Renesas RL78 Kickstart]]
-  * [[http://am.renesas.com/|Applilet3 for RL78G13]] 
  
 ==== Hardware Setup ==== ==== Hardware Setup ====
-A PmodDA4 has to be connected to the PMOD1 connector.+A PmodDA4 has to be connected to the PMOD1 connector, pins 1 to 6 (see image below).
  
 {{ :resources:tools-software:uc-drivers:renesas:pmod_da4_rl78g13.jpg? |}} {{ :resources:tools-software:uc-drivers:renesas:pmod_da4_rl78g13.jpg? |}}
- 
-==== Software Setup ==== 
-With the //**Applilet3 for RL78G13**// tool the following peripherals have to be configured: 
- 
-=== CSI10 (Clocked Serial Interface 10) – For the AD5628 part and the ST7579 LCD === 
-Choose to generate the Transmit/receive function for the CSI10 and configure the interface with the following settings: 
-  * Transfer mode setting: //**Single transfer mode**// 
-  * Data length setting : //**8 bits**// 
-  * Transfer direction setting: //**MSB**// 
-  * Specification of data timing: //**Type 1**// 
-  * Transfer rate setting – Clock mode: //**Internal clock (master)**// 
-  * Transfer rate setting – Baudrate: //**1000000**// (bps) 
-  * Interrupt setting – Transfer interrupt priority (INTCSI10): //**Low**// 
-  * Uncheck the callback functions. 
- 
-=== TM00 (Timer 00) – For the DelayMs() function ===  
-Configure TM00 as an interval timer: 
-  * Interval timer setting - Interval value(16 bits): //**1**// ms 
-  * Interval timer setting - Uncheck //Generates INTM00 when counting is started// 
-  * Interrupt setting - Uncheck // End of timer channel 0 count, generate an interrupt (INTM00)// 
- 
-=== Watchdog Timer === 
-Disable the watchdog timer: 
-  * Choose for the Watchdog timer operation setting: //**Unused**// option. 
  
 ==== Reference Project Overview ==== ==== Reference Project Overview ====
Line 101: Line 38:
   * to channel B, a value corresponding to 1/4 of Full Scale;   * to channel B, a value corresponding to 1/4 of Full Scale;
   * to channel C, a value corresponding to 1/8 of Full Scale.   * to channel C, a value corresponding to 1/8 of Full Scale.
 +
 +<WRAP round important 80%>
 +\\
 +The voltage reference is 2.5V.
 +\\
 +</WRAP>
  
 {{ :resources:tools-software:uc-drivers:renesas:pmod_da4_rl78g13_screen.jpg? |}} {{ :resources:tools-software:uc-drivers:renesas:pmod_da4_rl78g13_screen.jpg? |}}
  
 ==== Software Project Tutorial ==== ==== Software Project Tutorial ====
-{{page>rl78g13_software_tutorial}}+{{page>rl78g13_software_tutorial_without_applilet3}}
  
-====== Renesas RX62N Quick Start Guide ====== +====== Renesas RL78G14 Quick Start Guide ====== 
-This section contains a description of the steps required to run the AD5628 demonstration project on a Renesas RX62N platform.+This section contains a description of the steps required to run the AD5628 demonstration project on a Renesas RL78G14 platform using the PmodDA4.
  
 ==== Required Hardware ==== ==== Required Hardware ====
-  * [[http://am.renesas.com/products/tools/introductory_evaluation_tools/renesas_demo_kits/yrdkrx62n/index.jsp|Renesas Demo Kit for RX62N (Renesas)]] +  * [[https://www.renesas.com/us/en/products/microcontrollers-microprocessors/rl78-low-power-8-16-bit-mcus/yrdkrl78g14-yrdkrl78g14-demonstration-kit-rl78g14|Renesas Demo Kit for RL78G14 (Renesas)]] 
-  * PmodDA4+  * [[http://www.digilentinc.com/Products/Detail.cfm?Prod=PMOD-DA4|PmodDA4]]
  
 ==== Required Software ==== ==== Required Software ====
-  * [[http://www.renesas.com/products/tools/ide/ide_hew/index.jsp|High-performance Embedded Workshop for RX62N family]] +  * [[http://www.iar.com/en/Products/IAR-Embedded-Workbench/Renesas-RL78/|IAR Embedded Workbench for Renesas RL78 Kickstart]] 
-  * [[http://am.renesas.com/products/tools/middleware_and_drivers/c_driver_gen/driver_gen_rpdl/index.jsp|Renesas Peripheral Driver Library for RX62N family]]+  * The AD5628 demonstration project for the Renesas RL78G14 platform.
  
 +<WRAP round info 80%>
 +The AD5628 demonstration project for the Renesas RL78G14 platform consists of three parts: the **AD5628 Driver**,  the **PmodDA4 Demo for RL78G14** and the **RL78G14 Common Drivers**.
 +
 +All three parts have to be downloaded.
 +</WRAP>
 ==== Hardware Setup ==== ==== Hardware Setup ====
-A PmodDA4 has to be interfaced with the Renesas Demonstration Kit (RDKfor RX62N:+A PmodDA4 has to be connected to the PMOD1 connector, pins 1 to 6 (see image below).
  
-    PmodDA4 Pin 1 (CS)   → YRDKRX62N J8 connector Pin 15 +{{ :resources:tools-software:uc-drivers:renesas:pmod_da4_rl78g14.jpg? |}}
-    PmodDA4 Pin 2 (MOSI) → YRDKRX62N J8 connector Pin 19 +
-    PmodDA4 Pin 4 (CLK)  → YRDKRX62N J8 connector Pin 20 +
-    PmodDA4 Pin 5 (GND)  → YRDKRX62N J8 connector Pin 4 +
-    PmodDA4 Pin 6 (VCC)  → YRDKRX62N J8 connector Pin 3+
  
-{{ :resources:tools-software:uc-drivers:renesas:pmod_da4_rx62n.jpg? |}} 
  
 ==== Reference Project Overview ==== ==== Reference Project Overview ====
- 
 The reference project initializes the AD5628 part and writes: The reference project initializes the AD5628 part and writes:
   * to channel A, a value corresponding to 1/2 of Full Scale;   * to channel A, a value corresponding to 1/2 of Full Scale;
Line 136: Line 78:
   * to channel C, a value corresponding to 1/8 of Full Scale.   * to channel C, a value corresponding to 1/8 of Full Scale.
  
-{{ :resources:tools-software:uc-drivers:renesas:pmod_da4_rx62n_screen.jpg? |}}+<WRAP round important 80%> 
 +\\ 
 +The voltage reference is 2.5V. 
 +\\ 
 +</WRAP>
  
-==== Software Project Setup ==== +{{ :resources:tools-software:uc-drivers:renesas:pmod_da4_rl78g14_screen.jpg? |}}
-{{page>rx62n_software_design}}+
  
-====== Digilent Cerebot MX3cK Quick Start Guide ====== 
-This section contains a description of the steps required to run the AD5628 demonstration project on a Digilent Cerebot MX3cK platform. 
  
-==== Required Hardware ==== +==== Software Project Tutorial ==== 
-  * [[http://www.digilentinc.com/Products/Detail.cfm?Prod=CEREBOT-MX3CK|Cerebot MX3cK (Digilent)]] +{{page>rl78g14_software_tutorial}}
-  * PmodDA4+
  
-==== Required Software ==== 
-  * [[http://www.microchip.com/mplabx|MPLAB X Integrated Development Environment]] 
-  * [[http://www.microchip.com/mplabxc|MPLAB XC32 compiler]] 
  
-==== Hardware Setup ==== +====== Renesas RX62N Quick Start Guide ====== 
-A PmodDA4 has to be connected to the JE connector of Cerebot MX3cK development board. +This section contains a description of the steps required to run the AD5628 demonstration project on a Renesas RX62N platform.
- +
-{{ :resources:tools-software:uc-drivers:microchip:pmod_da4_pic32.jpg? |}} +
- +
-==== Reference Project Overview ==== +
-Following commands were implemented in this version of AD5628 reference project for Cerebot MX3cK board. +
-^ Command ^ Description ^ +
-| help? | Displays all available commands. | +
-| mode= | Selects a mode of operation for the current channel. Accepted values: 0 – 3. | +
-| mode? | Displays the selected mode of operation for the current channel. | +
-| channel= | Selects the channel that will be affected by the other commands. Accepted values: 0 – 7 (one channel) or 15 (all channels). | +
-| channel? | Displays the selected channel. | +
-| voltage= | Sets the output voltage for the current voltage. Accepted values: 0 – 2.5 (volts). | +
-| voltage? | Displays the output voltage of the current voltage. | +
-| register= | Writes the value into the Input Register of the current channel. Accepted values: 0 – 4095. | +
-| register? | Displays the value written in the Input Register of the current channel. | +
- +
-Commands can be executed using a serial terminal connected to the UART1 peripheral of PIC32MX320F128H. +
- +
-The following image shows a list of commands in a serial terminal connected to processor’s UART peripheral. +
-{{ :resources:tools-software:uc-drivers:microchip:terminal_pic32.png? |}} +
- +
-==== Software Project Setup ==== +
-{{page>:resources:tools-software:uc-drivers:microchip:pic32_software_design}} +
- +
-====== Digilent Cerebot MC7 Quick Start Guide ====== +
-This section contains a description of the steps required to run the AD5628 demonstration project on a Digilent Cerebot MC7 platform.+
  
 ==== Required Hardware ==== ==== Required Hardware ====
-  * [[http://www.digilentinc.com/Products/Detail.cfm?Prod=CEREBOT-MC7|Cerebot MC7 (Digilent)]]+  * [[https://www.renesas.com/us/en/products/microcontrollers-microprocessors/rx-32-bit-performance-efficiency-mcus/yrdkrx62n-yrdkrx62n-demonstration-kit-rx62n|Renesas Demo Kit for RX62N (Renesas)]]
   * PmodDA4   * PmodDA4
  
 ==== Required Software ==== ==== Required Software ====
-  * [[http://www.microchip.com/mplabx|MPLAB X Integrated Development Environment]] +  * [[https://www.renesas.com/us/en/software-tool/high-performance-embedded-workshop|High-performance Embedded Workshop for RX62N family]] 
-  * [[http://www.microchip.com/mplabxc|MPLAB XC16 compiler]]+  * [[https://www.renesas.com/us/en/software-tool/renesas-peripheral-driver-library|Renesas Peripheral Driver Library for RX62N family]]
  
 ==== Hardware Setup ==== ==== Hardware Setup ====
-A PmodDA4 has to be connected to the JB connector of Cerebot MC7 development board.+A PmodDA4 has to be interfaced with the Renesas Demonstration Kit (RDK) for RX62N:
  
-{{ :resources:tools-software:uc-drivers:microchip:pmod_da4_dspic33.jpg? |}}+    PmodDA4 Pin 1 (CS)   → YRDKRX62N J8 connector Pin 15 
 +    PmodDA4 Pin 2 (MOSI) → YRDKRX62N J8 connector Pin 19 
 +    PmodDA4 Pin 4 (CLK)  → YRDKRX62N J8 connector Pin 20 
 +    PmodDA4 Pin 5 (GND)  → YRDKRX62N J8 connector Pin 4 
 +    PmodDA4 Pin 6 (VCC)  → YRDKRX62N J8 connector Pin 3
  
-==== Reference Project Overview ==== +{{ :resources:tools-software:uc-drivers:renesas:pmod_da4_rx62n.jpg? |}}
-Following commands were implemented in this version of AD5628 reference project for Cerebot MC7 board. +
-^ Command ^ Description ^ +
-| help? | Displays all available commands. | +
-| mode= | Selects a mode of operation for the current channel. Accepted values: 0 – 3. | +
-| mode? | Displays the selected mode of operation for the current channel. | +
-| channel= | Selects the channel that will be affected by the other commands. Accepted values: 0 – 7 (one channel) or 15 (all channels). | +
-| channel? | Displays the selected channel. | +
-| voltage= | Sets the output voltage for the current voltage. Accepted values: 0 – 2.5 (volts). | +
-| voltage? | Displays the output voltage of the current voltage. | +
-| register= | Writes the value into the Input Register of the current channel. Accepted values: 0 – 4095. | +
-| register? | Displays the value written in the Input Register of the current channel. | +
- +
-Commands can be executed using a serial terminal connected to the UART1 peripheral of dsPIC33FJ128MC706A. +
- +
-The following image shows a list of commands in a serial terminal connected to processor’s UART peripheral. +
-{{ :resources:tools-software:uc-drivers:microchip:terminal_dspic33.png? |}} +
- +
-==== Software Project Setup ==== +
-{{page>:resources:tools-software:uc-drivers:microchip:dspic33_software_design}} +
- +
-====== Digilent Cerebot MX3cK Quick Start Guide - Arduino ====== +
-This section contains a description of the steps required to run the AD5628 Arduino demonstration project on a Digilent Cerebot MX3cK platform. +
- +
-==== Required Hardware ==== +
-  * [[http://www.digilentinc.com/Products/Detail.cfm?Prod=CEREBOT-MX3CK|Cerebot MX3cK (Digilent)]] +
-  * PmodDA4 +
- +
-==== Required Software ==== +
-  * [[https://github.com/chipKIT32/chipKIT32-MAX/downloads|MPIDE]] +
- +
-==== Hardware Setup ==== +
-A PmodDA4 has to be connected to the JE connector of Cerebot MX3cK development board. +
- +
-{{ :resources:tools-software:uc-drivers:microchip:pmod_da4_pic32_arduino.jpg? |}}+
  
 ==== Reference Project Overview ==== ==== Reference Project Overview ====
-Following commands were implemented in this version of AD5628 Arduino reference project for Cerebot MX3cK board. 
-^ Command ^ Description ^ 
-| help? | Displays all available commands. | 
-| mode= | Selects a mode of operation for the current channel. Accepted values: 0 – 3. | 
-| mode? | Displays the selected mode of operation for the current channel. | 
-| channel= | Selects the channel that will be affected by the other commands. Accepted values: 0 – 7 (one channel). | 
-| channel? | Displays the selected channel. | 
-| voltage= | Sets the output voltage for the current voltage. Accepted values: 0 – 2.5 (volts). | 
-| voltage? | Displays the output voltage of the current voltage. | 
-| register= | Writes the value into the Input Register of the current channel. Accepted values: 0 – 4095. | 
-| register? | Displays the value written in the Input Register of the current channel. | 
  
-Commands can be executed using the serial monitor.+The reference project initializes the AD5628 part and writes: 
 +  * to channel A, a value corresponding to 1/2 of Full Scale; 
 +  * to channel B, a value corresponding to 1/4 of Full Scale; 
 +  * to channel C, a value corresponding to 1/8 of Full Scale.
  
-//**Carriage return**// has to be selected as a line ending character. The required baud rate is //**9600 baud**//. +{{ :resources:tools-software:uc-drivers:renesas:pmod_da4_rx62n_screen.jpg? |}}
- +
-The following image shows a list of commands in the serial monitor. +
- +
-{{ :resources:tools-software:uc-drivers:microchip:terminal_arduino.png? |}}+
  
 ==== Software Project Setup ==== ==== Software Project Setup ====
-{{page>:resources:tools-software:uc-drivers:microchip:arduino_software_design}} +{{page>rx62n_software_design}}
  
 ====== More information ====== ====== More information ======
-{{page>more-information}}+{{page>:resources:tools-software:uc-drivers:more-information}}
resources/tools-software/uc-drivers/renesas/ad5628.1343121783.txt.gz · Last modified: 24 Jul 2012 11:23 by Dragos Bogdan