Platform drivers for Mbed.

Dependents:   EVAL-CN0535-FMCZ EVAL-CN0535-FMCZ EVAL-AD568x-AD569x EVAL-AD7606 ... more

Embed: (wiki syntax)

« Back to documentation index

aout.h File Reference

aout.h File Reference

Go to the source code of this file.

Data Structures

struct  aout_init_param
 Structure holding the parameters for analog output initialization. More...
struct  aout_desc
 Structure holding analog output descriptor. More...
struct  aout_platform_ops
 Structure holding analog output function pointers that point to the platform specific function. More...

Functions

int32_t aout_set_voltage (struct aout_desc *desc, float value)
 Write voltage to analog output pin.
int32_t aout_init (struct aout_desc **desc, const struct aout_init_param *param)
 Initialize the analog output pin.
int32_t aout_remove (struct aout_desc *desc)
 Deallocate resources allocated by aout_init()

Detailed Description

Author:
PMallick (Pratyush.Mallick@analog.com)

Copyright (c) 2021 Analog Devices, Inc. All rights reserved.

This software is proprietary to Analog Devices, Inc. and its licensors. By using this software you agree to the terms of the associated Analog Devices Software License Agreement.

Definition in file aout.h.


Function Documentation

int32_t aout_init ( struct aout_desc **  desc,
const struct aout_init_param param 
)

Initialize the analog output pin.

Parameters:
desc[in,out]- Analog output descriptor structure
param[in]- Structure that contains analog output initialization parameters
Returns:
SUCCESS in case of success, FAILURE otherwise

Definition at line 78 of file aout.cpp.

int32_t aout_remove ( struct aout_desc desc )

Deallocate resources allocated by aout_init()

Parameters:
desc[in,out]- Analog output descriptor
Returns:
SUCCESS in case of success, FAILURE otherwise.

Definition at line 137 of file aout.cpp.

int32_t aout_set_voltage ( struct aout_desc desc,
float  value 
)

Write voltage to analog output pin.

Parameters:
desc[in]- Analog output descriptor
value[in]- Analog output value in volts
Returns:
SUCCESS in case of success, FAILURE otherwise.

Definition at line 44 of file aout.cpp.