123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /**
- * @file
- *
- * @brief Public APIs for the audio channel select drivers.
- */
- /*
- * Copyright (c) 2021 Action Corporation
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #include <zephyr/types.h>
- #include <device.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- struct audio_chansel_data {
- union {
- struct{
- uint8_t GPIO_Pin; // GPIO 管脚, CFG_TYPE_GPIO_PIN
- uint8_t Pull_Up_Down; // 上下拉, CFG_TYPE_GPIO_PULL
- uint8_t Active_Level; // 有效电平, CFG_TYPE_GPIO_LEVEL
- }CFG_Type_Channel_Select_GPIO;
- struct{
- uint8_t LRADC_Pull_Up; // LRADC 上拉电阻, CFG_TYPE_LRADC_PULL_UP
- uint8_t ADC_Min; // ADC 阈值下限, 0x00 ~ 0x7F
- uint8_t ADC_Max; // ADC 阈值上限, 0x00 ~ 0x7F
- uint32_t LRADC_Ctrl; // LRADC 控制器, CFG_TYPE_LRADC_CTRL
- }CFG_Type_Channel_Select_LRADC;
- };
- };
- typedef int (*audio_api_chan_sel_t)(const struct device *dev, struct audio_chansel_data *data);
- __subsystem struct audio_chan_sel_driver_api {
- audio_api_chan_sel_t chan_sel;
- };
- /**
- * @brief select channel for audio.
- *
- * @param dev Pointer to the device structure for the driver instance.
- * @param audio_chansel_data choose two type way for the channel select.
- *
- * @retval 0 If successful.
- * @retval -EIO General input / output error, failed.
- */
- static inline int audio_chan_sel(const struct device *dev, struct audio_chansel_data *data)
- {
- const struct audio_chan_sel_driver_api *api =
- (const struct audio_chan_sel_driver_api *)dev->api;
- return api->chan_sel(dev, data);
- }
- #ifdef __cplusplus
- }
- #endif
|