chore: Remove tracked build artifacts

This commit is contained in:
lmx
2025-11-28 16:24:27 +08:00
parent 892ed9267b
commit 818e8c3778
2356 changed files with 0 additions and 587882 deletions

View File

@ -1,37 +0,0 @@
#ifndef _RDEC_H_
#define _RDEC_H_
#define DEVICE_EVENT_FROM_RDEC (('R' << 24) | ('D' << 16) | ('E' << 8) | '\0')
enum rdec_index {
RDEC0,
RDEC1,
RDEC2,
};
struct rdec_device {
enum rdec_index index;
u8 sin_port0; //采样信号端口0
u8 sin_port1; //采样信号端口1
u8 key_value0; //键值1
u8 key_value1; //键值2
};
struct rdec_platform_data {
u8 enable;
u8 num; //rdec数量
const struct rdec_device *rdec;
};
#define RDEC_PLATFORM_DATA_BEGIN(data) \
static const struct rdec_platform_data data = {
#define RDEC_PLATFORM_DATA_END() \
};
/*********************** rdec 初始化 ******************************/
int rdec_init(const struct rdec_platform_data *user_data);
#endif