20 lines
248 B
C
20 lines
248 B
C
#ifndef _APP_SOFT_H
|
|
#define _APP_SOFT_H
|
|
#include "app_scan.h"
|
|
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t head;
|
|
uint8_t x_rank[12];
|
|
uint8_t y_rank[12];
|
|
uint32_t tail;
|
|
}rank_frame_struct;
|
|
|
|
|
|
void soft_sensor(adc_value_frame_struct *adc_raw_value);
|
|
|
|
|
|
#endif
|
|
|