KT24-1110_65E-HA-651B/apps/soundbox/include/task_manager/linein/linein_dev.h

23 lines
346 B
C
Raw Normal View History

2024-11-10 10:44:17 +00:00
#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