Zephyr API Documentation  2.7.0-rc2
A Scalable Open Source RTOS
dac.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2020 Libre Solar Technologies GmbH
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
12#ifndef ZEPHYR_INCLUDE_DRIVERS_DAC_H_
13#define ZEPHYR_INCLUDE_DRIVERS_DAC_H_
14
15#include <device.h>
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
39};
40
47/*
48 * Type definition of DAC API function for configuring a channel.
49 * See dac_channel_setup() for argument descriptions.
50 */
51typedef int (*dac_api_channel_setup)(const struct device *dev,
52 const struct dac_channel_cfg *channel_cfg);
53
54/*
55 * Type definition of DAC API function for setting a write request.
56 * See dac_write_value() for argument descriptions.
57 */
58typedef int (*dac_api_write_value)(const struct device *dev,
59 uint8_t channel, uint32_t value);
60
61/*
62 * DAC driver API
63 *
64 * This is the mandatory API any DAC driver needs to expose.
65 */
66__subsystem struct dac_driver_api {
67 dac_api_channel_setup channel_setup;
68 dac_api_write_value write_value;
69};
70
88__syscall int dac_channel_setup(const struct device *dev,
89 const struct dac_channel_cfg *channel_cfg);
90
91static inline int z_impl_dac_channel_setup(const struct device *dev,
92 const struct dac_channel_cfg *channel_cfg)
93{
94 const struct dac_driver_api *api =
95 (const struct dac_driver_api *)dev->api;
96
97 return api->channel_setup(dev, channel_cfg);
98}
99
110__syscall int dac_write_value(const struct device *dev, uint8_t channel,
111 uint32_t value);
112
113static inline int z_impl_dac_write_value(const struct device *dev,
114 uint8_t channel, uint32_t value)
115{
116 const struct dac_driver_api *api =
117 (const struct dac_driver_api *)dev->api;
118
119 return api->write_value(dev, channel, value);
120}
121
126#ifdef __cplusplus
127}
128#endif
129
130#include <syscalls/dac.h>
131
132#endif /* ZEPHYR_INCLUDE_DRIVERS_DAC_H_ */
int dac_write_value(const struct device *dev, uint8_t channel, uint32_t value)
Write a single value to a DAC channel.
int dac_channel_setup(const struct device *dev, const struct dac_channel_cfg *channel_cfg)
Configure a DAC channel.
__UINT32_TYPE__ uint32_t
Definition: stdint.h:60
__UINT8_TYPE__ uint8_t
Definition: stdint.h:58
Structure for specifying the configuration of a DAC channel.
Definition: dac.h:36
uint8_t channel_id
Definition: dac.h:37
uint8_t resolution
Definition: dac.h:38
Runtime device structure (in ROM) per driver instance.
Definition: device.h:367
const void * api
Definition: device.h:373