no-OS
Classes | Macros | Enumerations | Functions
ad400x.h File Reference

Header file for ad400x Driver. More...

#include <stdbool.h>
#include "spi_engine.h"
#include "clk_axi_clkgen.h"
#include "no_os_pwm.h"
#include "no_os_gpio.h"
Include dependency graph for ad400x.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  ad400x_dev_info
 
struct  ad400x_dev
 
struct  ad400x_init_param
 

Macros

#define AD400X_READ_COMMAND   0x54
 
#define AD400X_WRITE_COMMAND   0x14
 
#define AD400X_RESERVED_MSK   0xE0
 
#define AD400X_TURBO_MODE(x)   (((x) & 0x1) << 1)
 
#define AD400X_HIGH_Z_MODE(x)   (((x) & 0x1) << 2)
 
#define AD400X_SPAN_COMPRESSION(x)   (((x) & 0x1) << 3)
 
#define AD400X_EN_STATUS_BITS(x)   (((x) & 0x1) << 4)
 

Enumerations

enum  ad400x_supported_dev_ids {
  ID_AD4000,
  ID_AD4001,
  ID_AD4002,
  ID_AD4003,
  ID_AD4004,
  ID_AD4005,
  ID_AD4006,
  ID_AD4007,
  ID_AD4011,
  ID_AD4020,
  ID_ADAQ4003
}
 

Functions

int32_t ad400x_spi_reg_read (struct ad400x_dev *dev, uint8_t *reg_data)
 
int32_t ad400x_spi_reg_write (struct ad400x_dev *dev, uint8_t reg_data)
 
int32_t ad400x_init (struct ad400x_dev **device, struct ad400x_init_param *init_param)
 
int32_t ad400x_remove (struct ad400x_dev *dev)
 Free the resources allocated by ad400x_init(). More...
 
int32_t ad400x_read_data (struct ad400x_dev *dev, uint32_t *buf, uint16_t samples)
 

Detailed Description

Header file for ad400x Driver.

Author
Mircea Caprioru (mirce.nosp@m.a.ca.nosp@m.prior.nosp@m.u@an.nosp@m.alog..nosp@m.com)

Copyright 2018(c) Analog Devices, Inc.

All rights reserved.

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

THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, INTELLECTUAL PROPERTY RIGHTS, 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.

Macro Definition Documentation

◆ AD400X_EN_STATUS_BITS

#define AD400X_EN_STATUS_BITS (   x)    (((x) & 0x1) << 4)

◆ AD400X_HIGH_Z_MODE

#define AD400X_HIGH_Z_MODE (   x)    (((x) & 0x1) << 2)

◆ AD400X_READ_COMMAND

#define AD400X_READ_COMMAND   0x54

◆ AD400X_RESERVED_MSK

#define AD400X_RESERVED_MSK   0xE0

◆ AD400X_SPAN_COMPRESSION

#define AD400X_SPAN_COMPRESSION (   x)    (((x) & 0x1) << 3)

◆ AD400X_TURBO_MODE

#define AD400X_TURBO_MODE (   x)    (((x) & 0x1) << 1)

◆ AD400X_WRITE_COMMAND

#define AD400X_WRITE_COMMAND   0x14

Enumeration Type Documentation

◆ ad400x_supported_dev_ids

Enumerator
ID_AD4000 
ID_AD4001 
ID_AD4002 
ID_AD4003 
ID_AD4004 
ID_AD4005 
ID_AD4006 
ID_AD4007 
ID_AD4011 
ID_AD4020 
ID_ADAQ4003 

Function Documentation

◆ ad400x_init()

int32_t ad400x_init ( struct ad400x_dev **  device,
struct ad400x_init_param init_param 
)

Initialize the device.

Parameters
device- The device structure.
init_param- The structure that contains the device initial parameters.
Returns
0 in case of success, negative error code otherwise.
Here is the caller graph for this function:

◆ ad400x_read_data()

int32_t ad400x_read_data ( struct ad400x_dev dev,
uint32_t *  buf,
uint16_t  samples 
)

Read conversion results from device.

Parameters
dev- The device structure.
buf- Buffer to hold the conversion results data
samples- number of samples to read
Returns
0 in case of success, negative error code otherwise.
Here is the caller graph for this function:

◆ ad400x_remove()

int32_t ad400x_remove ( struct ad400x_dev dev)

Free the resources allocated by ad400x_init().

Parameters
dev- The device structure.
Returns
0 in case of success, negative error code otherwise.
Here is the caller graph for this function:

◆ ad400x_spi_reg_read()

int32_t ad400x_spi_reg_read ( struct ad400x_dev dev,
uint8_t *  reg_data 
)

Read from device.

Parameters
dev- The device structure.
reg_data- The register data.
Returns
0 in case of success, negative error code otherwise.
Here is the caller graph for this function:

◆ ad400x_spi_reg_write()

int32_t ad400x_spi_reg_write ( struct ad400x_dev dev,
uint8_t  reg_data 
)

Write to device.

Parameters
dev- The device structure.
reg_data- The register data.
Returns
0 in case of success, negative error code otherwise.
Here is the caller graph for this function: