AC695N-SoundBox-SDK/apps/soundbox/include/task_manager/linein/linein_dev.h
2026-08-09 00:00:00 +00:00

23 lines
346 B
C

#ifndef _LINEIN_DEV_H_
#define _LINEIN_DEV_H_
#include "typedef.h"
#include "device/device.h"
struct linein_dev_data {
u8 enable;
u8 port;
u8 up : 1;
u8 down : 1;
u8 ad_channel;
u16 ad_vol;
};
u8 linein_is_online(void);
void linein_set_online(u8 online);
extern const struct device_operations linein_dev_ops;
#endif