no-OS
Functions
ad7303.c File Reference

Implementation of AD7303 Driver. More...

#include <stdlib.h>
#include "ad7303.h"
#include "no_os_alloc.h"
Include dependency graph for ad7303.c:

Functions

int8_t ad7303_init (struct ad7303_dev **device, struct ad7303_init_param init_param)
 Initializes SPI communication. More...
 
int32_t ad7303_remove (struct ad7303_dev *dev)
 Free the resources allocated by ad7303_init(). More...
 
void ad7303_write (struct ad7303_dev *dev, uint8_t control_reg, uint8_t data_reg)
 Sends data to AD7303. More...
 

Detailed Description

Implementation of AD7303 Driver.

Author
Mihai Bancisor(Mihai.nosp@m..Ban.nosp@m.cisor.nosp@m.@ana.nosp@m.log.c.nosp@m.om)

Copyright 2012(c) Analog Devices, Inc.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  3. Neither the name of Analog Devices, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES, INC. “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANALOG DEVICES, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Function Documentation

◆ ad7303_init()

int8_t ad7303_init ( struct ad7303_dev **  device,
struct ad7303_init_param  init_param 
)

Initializes SPI communication.

Parameters
device- The device structure.
init_param- The structure that contains the device initial parameters.
Returns
Result of the initialization procedure. Example: -1 - SPI peripheral was not initialized. 0 - SPI peripheral is initialized.

◆ ad7303_remove()

int32_t ad7303_remove ( struct ad7303_dev dev)

Free the resources allocated by ad7303_init().

Parameters
dev- The device structure.
Returns
0 in case of success, negative error code otherwise.

◆ ad7303_write()

void ad7303_write ( struct ad7303_dev dev,
uint8_t  control_reg,
uint8_t  data_reg 
)

Sends data to AD7303.

Parameters
dev- The device structure.
control_reg- Value of control register. Example: AD7303_INT | AD7303_LDAC | AD7303_A - enables internal reference and loads DAC A input register from shift register and updates both DAC A and DAC B DAC registers.
data_reg- Value of data register.
Returns
None.